How to add row to two dimensional (2D) slice in Go

1 Answer

0 votes
package main
 
import "fmt"
 
func main() {
    slice := [][]int{{1, 2, 3},
                     {4, 5},
                     {6, 7, 8, 9},
    }
     
    fmt.Println(slice)

	row := []int{34, 65, 78, 12}
    slice = append(slice, row)
     
    fmt.Println(slice)
}
  
  
  
/*
run:
  
[[1 2 3] [4 5] [6 7 8 9]]
[[1 2 3] [4 5] [6 7 8 9] [34 65 78 12]]
  
*/

 



answered Aug 15, 2020 by avibootz

Related questions

2 answers 272 views
272 views asked Aug 27, 2020 by avibootz
1 answer 159 views
3 answers 235 views
1 answer 179 views
1 answer 133 views
1 answer 147 views
...