码迷,mamicode.com
首页 > 移动开发 > 详细

462. Minimum Moves to Equal Array Elements II 最小移动到等数组元素II

时间:2017-10-13 23:45:26      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:padding   xpl   for   ati   ace   nim   enum   neu   数组元素   

Given a non-empty integer array, find the minimum number of moves required to make all array elements equal, where a move is incrementing a selected element by 1 or decrementing a selected element by 1.

You may assume the array‘s length is at most 10,000.

Example:

Input:
[1,2,3]

Output:
2

Explanation:
Only two moves are needed (remember each move increments or decrements one element):

[1,2,3]  =>  [2,2,3]  =>  [2,2,2]

给定非空整数数组,找到使所有数组元素相等所需的最小移动数,移动将所选元素递增1或将所选元素递减1。
  1. /**
  2. * @param {number[]} nums
  3. * @return {number}
  4. */
  5. var minMoves2 = function(nums) {
  6. let newNums = nums.sort((a,b)=>{return a-b});
  7. let mid = nums[parseInt(newNums.length / 2)];
  8. let sum = 0;
  9. for(let i in newNums){
  10. sum += Math.abs(newNums[i] - mid);
  11. }
  12. return sum;
  13. };





462. Minimum Moves to Equal Array Elements II 最小移动到等数组元素II

标签:padding   xpl   for   ati   ace   nim   enum   neu   数组元素   

原文地址:http://www.cnblogs.com/xiejunzhao/p/7663625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!