Change why is to why are

This commit is contained in:
Firas Khalil Khana
2021-06-08 11:19:26 +03:00
committed by İnanç Gümüş
parent 822016daa1
commit 5b07358ca7
+1 -1
View File
@@ -29,7 +29,7 @@ s[2:] // <-- slicing
> **3:** Yes! Slicing returns a new slice that references to some segment of the same backing array.
## Why is slicing and indexing a slice efficient?
## Why are slicing and indexing a slice efficient?
1. Slices are fast
2. Backing arrays are contiguous in memory *CORRECT*
3. Go uses clever algorithms