1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00

go: add «2037. Minimum Number of Moves to Seat Everyone»

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-06-13 13:04:30 +02:00
parent fbc9fdb7ad
commit d738179503
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,23 @@
package minimum_number_of_moves_to_seat_everyone
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
}