Solution 1 贪心模拟
steps:
if k > 0, go to 2, else 4
find min of nums, negate it
k--, goto 1
get sum of nums
关键是如何取得 nums 的最小值, nums 元素值不大,可以用 hash 数组实现
Last updated
steps:
if k > 0, go to 2, else 4
find min of nums, negate it
k--, goto 1
get sum of nums
关键是如何取得 nums 的最小值, nums 元素值不大,可以用 hash 数组实现
Last updated