Let's see if you can correctly figure out the types of these (array or slice)
a := [4]int{}
a := []int{}
a := []int{1,2,3}
a := [4]int{}
a := make([]int, 10)
a := new([]int)
a := *new([]int)
a := *new([5]int)
a := new([5]int)[:]
Let's see if you can correctly figure out the types of these (array or slice)
a := [4]int{}
a := []int{}
a := []int{1,2,3}
a := [4]int{}
a := make([]int, 10)
a := new([]int)
a := *new([]int)
a := *new([5]int)
a := new([5]int)[:]
For further actions, you may consider blocking this person and/or reporting abuse
Mihai Farcas -
Gabriel Morishita -
Saloni Agarwal -
Luqman Shaban -
Top comments (0)