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,870 questions

51,793 answers

573 users

How to use slice of slices in Go

1 Answer

0 votes
package main

import "fmt"

func main() {
    slices  := [][]string{}

    row1 := []string{"go", "java", "python"}
    row2 := []string{"nodejs"}
    row3 := []string{"c", "c++", "c#", "php"}

    slices = append(slices, row1)
    slices = append(slices, row2)
    slices = append(slices, row3)

    for i := range slices {
        fmt.Println(slices[i])
    }
    
    fmt.Println("\n", slices[0][0], "\n")
    
    for i := range slices {
        for j := range slices[i] {
            fmt.Println(slices[i][j])
        }
    }
}

  
  
  
/*
run:
  
[go java python]
[nodejs]
[c c++ c# php]

 go 

go
java
python
nodejs
c
c++
c#
php
  
*/

 



answered Aug 27, 2020 by avibootz

Related questions

2 answers 231 views
231 views asked Sep 4, 2020 by avibootz
1 answer 51 views
1 answer 141 views
141 views asked Aug 18, 2020 by avibootz
2 answers 238 views
238 views asked Aug 18, 2020 by avibootz
1 answer 171 views
...