You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
lee 8ffc65ce3d chore(exam): remove all folders that contained "-exam" suffix & add the main.go to exercises that needed it 4 months ago
..
README.md chore(exam): remove all folders that contained "-exam" suffix & add the main.go to exercises that needed it 4 months ago
main.go chore(exam): remove all folders that contained "-exam" suffix & add the main.go to exercises that needed it 4 months ago

README.md

concatslice

Instructions

Write a function ConcatSlice() that takes two slices of integers as arguments and returns the concatenation of the two slices.

Expected function

func ConcatSlice(slice1, slice2 []int) []int {

}

Usage

Here is a possible program to test your function:

package main

import (
	"fmt"
	"piscine"
)

func main() {
	fmt.Println(piscine.ConcatSlice([]int{1, 2, 3}, []int{4, 5, 6}))
	fmt.Println(piscine.ConcatSlice([]int{}, []int{4, 5, 6, 7, 8, 9}))
	fmt.Println(piscine.ConcatSlice([]int{1, 2, 3}, []int{}))
}

And its output:

$ go run .
[1 2 3 4 5 6]
[4 5 6 7 8 9]
[1 2 3]