Solution: Basic Go Data Types
Let’s solve the challenges set in the previous lesson.
We'll cover the following...
Problem 1: Solution
Here is an example of a function in Go that takes two arrays as input and concatenates them into a new slice:
Press + to interact
package mainimport ("fmt")func concatenate(a1 [3]int, a2 [3]int) []int {var s []intvar a3 [6]intfor i := 0; i < len(a1); i++ {a3[i] = a1[i]}for i := 0; i < len(a2); i++ {a3[i + len(a1)] = a2[i]}s = a3[0:6] //creates a slice from a3[0] to a3[5]return s}func main() {arr1 := [3]int{1, 2, 3}arr2 := [3]int{4, 5, 6}newSlice := concatenate(arr1, arr2)fmt.Println(newSlice)}
Code explanation
Lines 9–14: The
concatenate()
function takes in two arrays of integers,a1
anda2
, and creates a new array,a3
, with a length equal to the sum of the lengths ofa1
anda2
. The function then iterates through the elements of botha1
anda2
and assigns them to the corresponding positions ina3
.Line 15: The
a3
i array s converted to a ...