← Back to archive

Stdle #20 · slices · 2026-06-26

What does this Go snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

package main
import "fmt"
func main() {
s := []int{1, 2, 3, 4, 5}
t := s[1:3:4]
fmt.Println(len(t), cap(t))
}
Slices
4 attempts left

Answer & explanation