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

51,817 answers

573 users

How to split an array into evenly sized chunks in Go

1 Answer

0 votes
package main

import "fmt"

func chunkSlice(slice []int, chunkSize int) [][]int {
    var chunks [][]int
    var size = len(slice)
    
    for i := 0; i < size; i += chunkSize {
        end := i + chunkSize
        if end > len(slice) {
            end = len(slice)
        }
        chunks = append(chunks, slice[i:end])
    }
    
    return chunks
}

func main() {
    arr := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}
    chunkSize := 3
    
    chunks := chunkSlice(arr, chunkSize)
    
    fmt.Println(chunks)
    
    fmt.Println(chunks[0])
    
    fmt.Println(chunks[0][0])
    fmt.Println(chunks[0][1])
    fmt.Println(chunks[0][2])
}

 
 
/*
run:
 
[[1 2 3] [4 5 6] [7 8 9] [10 11 12] [13 14]]
[1 2 3]
1
2
3

*/

 



answered Nov 13, 2024 by avibootz

Related questions

1 answer 100 views
2 answers 118 views
1 answer 96 views
1 answer 105 views
1 answer 103 views
1 answer 100 views
1 answer 89 views
...