Check if two slices are equal

Avatar of the author Willem Schots
6 Jul, 2023 (Updated 22 Jan, 2024)
~2 min.
RSS

If you use the == or != comparison operators you can only compare slices to nil. So how do you check if two slices are equal?

Well.. that depends on what you mean by “equal slices”. But often you want to check if slices are of the same length and have equal elements at the same indices.

Depending on your Go version you can:

These functions compare the elements using ==. Depending on your situation you may want to compare the elements in a different way. The EqualFunc function allows you to specify a custom comparison function.

If you are using a Go version that does not support generics, you can always implement your own EqualSlices function. See the example below:

main.go
package main

import (
	"fmt"
	"slices"
)

func main() {
	x := []string{"🙈", "🙉", "🙊"}
	y := []string{"🙈", "🦍"}

	fmt.Println("slices.Equal:")
	fmt.Println("x equal to y?", slices.Equal(x, y))
	fmt.Println("y equal to x?", slices.Equal(y, x))
	fmt.Println("x equal to x?", slices.Equal(x, x))
	fmt.Println("y equal to y?", slices.Equal(y, y))

	fmt.Println("---")

	fmt.Println("EqualSlices:")
	fmt.Println("x equal to y?", EqualSlices(x, y))
	fmt.Println("y equal to x?", EqualSlices(y, x))
	fmt.Println("x equal to x?", EqualSlices(x, x))
	fmt.Println("y equal to y?", EqualSlices(y, y))
}

// EqualSlices checks if two slices have equal contents.
// For two slices to be equal:
// - They need to have the same number of elements.
// - Each element must be equal using the == operator.
func EqualSlices(s1, s2 []string) bool {
	if len(s1) != len(s2) {
		return false
	}

	for i, v := range s1 {
		if s2[i] != v {
			return false
		}
	}

	return true
}

Get my free newsletter every second week

Used by 500+ developers to boost their Go skills.

"I'll share tips, interesting links and new content. You'll also get a brief guide to time for developers for free."

Avatar of the author
Willem Schots

Hello! I'm the Willem behind willem.dev

I created this website to help new Go developers, I hope it brings you some value! :)

You can follow me on Bluesky, Twitter/X or LinkedIn.

Thanks for reading!