Skip to content

Instantly share code, notes, and snippets.

@PantherHawk
Created December 14, 2017 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PantherHawk/f5817168386e089211cda077b7e0e8ec to your computer and use it in GitHub Desktop.
Save PantherHawk/f5817168386e089211cda077b7e0e8ec to your computer and use it in GitHub Desktop.
function minMoves(list) {
var sum = list.reduce((a, b) => a + b)
var minNum = Math.min(...list)
var n = list.length;
return sum-(minNum)*n
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment