Iteration
Everything on SkillVeris tagged Iteration — collected across the glossary, study notes, blog, and cheat sheets.
9 resources across 3 libraries
Study Notes(6)
Loops in AWK
Master AWK's iteration constructs — while, do-while, for, and the array-oriented for-in loop — along with break, continue, and next for controlling flow throug…
mapcar and Functional Iteration
How mapcar and its relatives let you transform lists by applying a function across them, without hand-writing explicit loops.
Loops in Dart
Master Dart's for, for-in, while, and do-while loops, along with break, continue, and labeled loops for fine-grained control over iteration.
Associative Arrays
Bash 4+ associative arrays bring key-value maps to shell scripting — learn declaration, iteration order, key existence checks, and real-world patterns like cou…
Recursion vs Iteration
Compare recursive and iterative solutions in terms of clarity, performance, memory usage, and when to prefer each.
each, map, and select
Master the three most commonly used Enumerable methods — each for side effects, map for transformation, and select for filtering — and when to reach for which.
Cheat Sheets(1)
Interview Questions(2)
Iterative vs Recursive Algorithms: What is the Difference?
An iterative algorithm repeats a loop body while updating variables directly, using O(1) call-stack space, while a recursive algorithm solves a problem by call…
map, filter, and reduce: How Do They Differ?
map transforms every element into a new array of the same length, filter selects a subset of elements into a new (possibly shorter) array based on a predicate,…