79 lines
2.1 KiB
Go
79 lines
2.1 KiB
Go
// For more tutorials: https://blog.learngoprogramming.com
|
|
//
|
|
// Copyright © 2018 Inanc Gumus
|
|
// Learn Go Programming Course
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/inancgumus/learngo/16-slices/exercises/23-limit-the-backing-array-sharing/api"
|
|
)
|
|
|
|
// ---------------------------------------------------------
|
|
// EXERCISE: Limit the backing array sharing
|
|
//
|
|
// In this exercise: API means the api package. It's in the
|
|
// api folder. You need to change the code in the `api/api.go`
|
|
// to solve this exercise.
|
|
//
|
|
// `Read` function of the api package returns a portion of
|
|
// its `temps` slice. Below, `main()` saves it to the
|
|
// `received` slice.
|
|
//
|
|
// `main()` appends to the `received` slice but doing so
|
|
// also changes the backing array of the `temps` slice.
|
|
// We don't want that.
|
|
//
|
|
// Only allow `main()` to change the part of the `temps`
|
|
// slice that is returned from the `Read()`. It shouldn't
|
|
// change the rest of the `temps`.
|
|
//
|
|
// Remember: `received` and `temps` share the same
|
|
// backing array.
|
|
//
|
|
//
|
|
// NOTE
|
|
//
|
|
// You need to import the api package.
|
|
//
|
|
//
|
|
// CURRENT
|
|
//
|
|
// | |
|
|
// v v
|
|
// api.temps : [5 10 3 1 3 80 90]
|
|
// main.received : [5 10 3 1 3]
|
|
// ^ ^ append changes the `temps`
|
|
// slice's backing array.
|
|
//
|
|
//
|
|
//
|
|
// EXPECTED
|
|
//
|
|
// The corrected api package does not allow the `main()` to
|
|
// change unreturned portion of the temps slice's backing array.
|
|
// | |
|
|
// v v
|
|
// api.temps : [5 10 3 25 45 80 90]
|
|
// main.received : [5 10 3 1 3]
|
|
//
|
|
// ---------------------------------------------------------
|
|
|
|
func main() {
|
|
// DO NOT CHANGE ANYTHING IN THIS CODE.
|
|
|
|
// get the first three elements from api.temps
|
|
received := api.Read(0, 3)
|
|
|
|
// append changes the api package's temps slice's
|
|
// backing array as well.
|
|
received = append(received, []int{1, 3}...)
|
|
|
|
fmt.Println("api.temps :", api.All())
|
|
fmt.Println("main.received :", received)
|
|
}
|