置顶推文
CodeWithWho
256 posts

CodeWithWho
@CodeWithWho
Building software that solves real problems. Software Engineer | Frontend | Backend Shipping ideas to the internet.
加入时间 Mart 2026
51 关注34 粉丝

@temivalentine_ No need to say "asking for me". Even if you said it's for someone else, Nigerians have normalised it as, it is for you.
Yeah, I think inasmuch as we try to niche down, I don't think modelling deters web development that much
So I would say bio it up.
English

Linked List = treasure hunt 🔗
Each item points to the next. Start at the head, follow the trail.
Good:
- Easy to add/remove anywhere
- Grows as you need
Bad:
- Finding item #100? Walk from start 😮💨
- Think: scavenger hunt — flexible but slow to find things.
#LinkedList
English

ADT(Abstract Data Type) = what you can do, not how
List ADT says:
Add item
Get item
Remove item
Count items
Could be an array. Could be a linked list: same buttons, different engine.
#CodingForBeginners #DataStructures #LearnToCode
English

Array = items in a row 📏
Good:
Jump to any spot instantly
Super fast to read
Bad:
Inserting? Everyone shifts over 😅
Fixed size (unless dynamic)
Think: parking spots — numbered, easy to find, hard to squeeze in.
#Arrays #ProgrammingBasics #CodeNewbie #TechLearning
English

Array = fast reads 📖
Linked List = fast writes ✍️
That's 90% of what you need to know.
The rest? You'll learn when you need it.
#KeepItSimple #CodingWisdom #DevLife #TechMadeSimple
English

@CodeWithWho Stop # in your post
It tends reduce how far you post can be
English

Guten Morgen. Just before Guten Tag
slept late, woke up late, like my brother @_devEmmy, code yesterday, but got straight into it with two interviews. Pray we all have a great day today.
Prost!!
#BuildInPublic
#DevLife
#Programming
#SoftwareEngineering
#Coding
English

Dynamic array = array that grows! 🚀
Python list, Java ArrayList, JavaScript []
Fast to read
Appending is quick
Grows automatically
What most apps use. Simple. Works. No overthinking.
#CodingLife #WebDev #Python #JavaScript #Java
English

Time: O(n) — multiple passes Space: O(1) — just a handful of pointers
No arrays. No recursion. Just pointer gymnastics.
#LinkedList #Algorithms #DataStructures #TechInterview #CodeNewbie
English




