refactor: slice exercises 16-21

This commit is contained in:
Inanc Gumus
2019-08-18 15:32:48 +03:00
parent 5d6b493e75
commit 4f60812589
10 changed files with 68 additions and 52 deletions

View File

@ -32,6 +32,19 @@ import (
// `api.temps` slice.
//
//
// BE CAREFUL
//
// This code imports the api package from the learn go programming
// original repository. So, when you change the code in the api folder
// ensure that this code imports your own code.
//
// see above (this is the original repository code):
// you need to change it to your own repository if you're using your own
// repository:
//
// "github.com/inancgumus/learngo/16-slices/exercises/23-limit-the-backing-array-sharing/api"
//
//
// STEPS
//
// You only need to change the code inside the `api/api.go` folder