Stdle #15 · slices · 2026-06-21
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] fmt.Println(cap(t))}Slices
Stdle #15 · slices · 2026-06-21
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] fmt.Println(cap(t))}