881. Boats to Save People
881. Boats to Save People
1 | You are given an array people where people[i] is the weight of the ith person, and an infinite number of boats where each boat can carry a maximum weight of limit. Each boat carries at most two people at the same time, provided the sum of the weight of those people is at most limit. |
Difficulty : Medium
Solution
Bucket sort
1 | class Solution { |