1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/go/make-two-arrays-equal-by-reversing-subarrays.go

17 lines
210 B
Go
Raw Normal View History

package main
import "slices"
func canBeEqual(target []int, arr []int) bool {
slices.Sort(target)
slices.Sort(arr)
for i := range target {
if arr[i] != target[i] {
return false
}
}
return true
}