improve: exercise docs for slices

This commit is contained in:
Inanc Gumus
2019-03-06 01:26:13 +03:00
parent 143ceb6293
commit 8552244d57
2 changed files with 12 additions and 1 deletions

View File

@ -71,6 +71,9 @@ Peek into the internals of the slices and gain more insight. This is necessary f
Commonly used and more advanced operations are available to slices. Now, it's time to test yourself and fix some common problems. Commonly used and more advanced operations are available to slices. Now, it's time to test yourself and fix some common problems.
★ WARNING ★
Please update your local copy of the prettyslice package for some examples to work. [Please find the intructions how to do so here](../README.md).
1. **[Practice Advanced Slice Operations](https://github.com/inancgumus/learngo/tree/master/16-slices/exercises/22-adv-ops-practice)** 1. **[Practice Advanced Slice Operations](https://github.com/inancgumus/learngo/tree/master/16-slices/exercises/22-adv-ops-practice)**
Let's warm you up for the advanced slice operations, and reinforce your neurons. Let's warm you up for the advanced slice operations, and reinforce your neurons.

View File

@ -6,4 +6,12 @@
* [Slicing](3-slicing.md) * [Slicing](3-slicing.md)
* [Backing Array](4-backing-array.md) * [Backing Array](4-backing-array.md)
* [Slice Header](5-slice-header.md)
* [Capacity](6-capacity.md)
* [The Mechanics of Append](7-mechanics-of-append.md)
* [Advanced Slice Operations](8-advanced-ops.md)