Skip to content

Commit f9529bb

Browse files
authored
Merge pull request #35 from gmihov001/patch-8
Update README.md
2 parents 53988e7 + 1f3739f commit f9529bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/07.3-Flip-Array/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ tutorial: https://www.youtube.com/watch?v=Snn7OtZY370
44

55
# `07.3` Flip Array
66

7-
## :pencil: Instrucciones:
7+
## :pencil: Instructions:
88

9-
1. Using a `for` loop, invert the `arr` array and print the new array it on the console.
9+
1. Using a `for` loop, invert the `arr` array and print the new array on the console.
1010

1111
For example:
1212

@@ -19,4 +19,4 @@ Final array: [60, 32, 5 , 23, 87, 67, 45];
1919

2020
+ You should loop the entire array [from the end to the beggining](https://stackoverflow.com/questions/1340589/are-loops-really-faster-in-reverse).
2121

22-
+ On each loop push all the items (as you go) into a new array, this will be your flipped array.
22+
+ On each loop push all the items (as you go) into a new array, this will be your flipped array. What other methods can you use besides `push()`?

0 commit comments

Comments
 (0)