update: slices 23th exercise

This commit is contained in:
Inanc Gumus
2019-08-18 12:59:50 +03:00
parent 4b2d2a3d6b
commit dfca449457
4 changed files with 52 additions and 39 deletions

View File

@ -1,13 +1,25 @@
package api
// note: "client" means the users or importers of your package.
// The original temperatures slice.
var temps = []int{5, 10, 3, 25, 45, 80, 90}
// ^ ^ ^ ^ ^
// | | | +-----------+
// the client is allowed to |
// change these elements. |
// |
// but the client shouldn't change the
// rest of the elements after the 3rd element.
// Read returns a range of temperature readings beginning from
// the `start` until to the `stop`.
func Read(start, stop int) []int {
// ----------------------------------------
// RESTRICTIONS — ONLY ADD YOUR CODE HERE
// returns a slice from the temps slice to the client.
portion := temps[start:stop]
// ----------------------------------------