Update: change the solution to follow instrucion

Step 7 of the exercise instruction wants us to "slice only the first 1000 elements of the array", not slicing after the first 1000 elements of the array.
This commit is contained in:
AminBhr
2021-08-22 14:46:26 +04:30
committed by İnanç Gümüş
parent 178a8c456b
commit 3fb4f86a79

View File

@ -31,7 +31,7 @@ func main() {
passArray(array) passArray(array)
slice1 := array[:] slice1 := array[:]
slice2 := array[1e3:] slice2 := array[:1e3]
slice3 := array[1e3:1e4] slice3 := array[1e3:1e4]
report("after slicings") report("after slicings")