Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,906 questions

51,838 answers

573 users

How to use two dimensional (2D) slice in Go

2 Answers

0 votes
package main

import "fmt"

func main() {
    slice := [][]int{}

    row1 := []int{1, 2, 3, 4}
    row2 := []int{34, 65, 1, 8}
    
    slice = append(slice, row1)
    slice = append(slice, row2)

    fmt.Println(slice[0])
    fmt.Println(slice[1])

    fmt.Println(slice[0][0])
    fmt.Println(slice[1][0])
}
  
  
  
/*
run:
  
[1 2 3 4]
[34 65 1 8]
1
34
  
*/

 



answered Aug 27, 2020 by avibootz
0 votes
package main
 
import "fmt"
 
func main() {
    slice := [][]int{}
 
    row1 := []int{1, 2, 3, 4}
    row2 := []int{34, 65, 1, 8}
     
    slice = append(slice, row1)
    slice = append(slice, row2)
 
    for i := range slice {
        fmt.Println(slice[i])
    }
    
    fmt.Println("\n")
    
    for i := range slice {
        for j := range slice[i] {
            fmt.Println(slice[i][j])
        }
    }
}
 
   
   
   
/*
run:
   
[1 2 3 4]
[34 65 1 8]


1
2
3
4
34
65
1
8
   
*/

 



answered Aug 27, 2020 by avibootz

Related questions

1 answer 141 views
1 answer 168 views
3 answers 209 views
1 answer 162 views
2 answers 214 views
214 views asked Aug 27, 2020 by avibootz
1 answer 174 views
1 answer 126 views
...