Tag
#data-structures
Everything I’ve written about data-structures. Notes, tutorials and lessons collected in one place.
2 posts
- · 18 min readProgramming Basics
Algorithms: Dictionaries
What is a dictionary and how do you reach a piece of information by its name (its key) instead of its position? Learn key–value mapping, adding, updating, lookup and traversal — no code.
#dictionary#key-value#algorithm#programming-basics#data-structures#getting-started · 30 min readJuly 10, 2026 Programming BasicsAlgorithms: Lists
What is a list and how does a computer store many values under one name? Learn indexes, walking a list with a loop, and the count-from-zero trap — no code.
#list#array#algorithm#programming-basics#data-structures#getting-started