- Step 1. What Is an ArrayArrays. Indexes. Create, write, and read. Iteration and search.
- Step 2. Iteration and SearchExercises on array iteration and element search.
- Step 3. Creating and Changing ArraysExercises on creating, changing, and filling arrays.
- Step 4. In-Place OperationsIn-place operations. Changing arrays in place without extra memory.
- Step 5. Advanced LevelAdvanced array exercises.
Step 2. Iteration and Search
In this step you will learn basic array techniques: iterating elements, analyzing values, and finding needed data.
Each exercise helps reinforce array traversal and simple conditions.
What you will learn to do:
- Iterate an array from start to end
- Count elements by a condition
- Find maxima and specific values
- Find an element's index in an array