[LeetCode] Minimum Cost to Make Array Equal

1 · · Nov. 19, 2022, 5:36 a.m.
Summary
2448. Minimum Cost to Make Array Equal You are given two 0-indexed arrays nums and cost consisting each of n positive integers. You can do the following operation any number of times: Increase or decrease any element of the array nums by 1. The cost of doing one operation on the ith element is cost[i]. Return the minimum total cost such that all the elements of the array nums become equal. ...