mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
23 lines
354 B
Go
23 lines
354 B
Go
package main
|
|
|
|
import (
|
|
"slices"
|
|
)
|
|
|
|
func minMovesToSeat(seats []int, students []int) int {
|
|
abs := func(value int) int {
|
|
return max(-value, value)
|
|
}
|
|
|
|
// sort them to get minimal distances
|
|
slices.Sort(seats)
|
|
slices.Sort(students)
|
|
|
|
moves := 0
|
|
for i, seat := range seats {
|
|
student := students[i]
|
|
moves += abs(seat - student)
|
|
}
|
|
|
|
return moves
|
|
}
|