update: slice exercises 21, 23, 24, 25, 26

This commit is contained in:
Inanc Gumus
2019-08-23 10:19:50 +03:00
parent cfc6f5fbfa
commit 435c08e800
7 changed files with 101 additions and 71 deletions

View File

@ -0,0 +1,16 @@
# Hints
+ `millions` slice's backing array uses 65 MB of memory.
+ `make` a new slice with 10 elements with a new backing array.
+ `copy` the last 10 elements of the `millions` slice to the new slice.
+ So you will have slice with a new backing array only with 10 elements.
+ Then overwrite the `millions` slice by simply `assigning` `last10` slice to it.
+ **Remember:** slice ~= pointer to a backing array.
If you overwrite the slice, it will lose that
pointer. So Go can collect the unused memory.