Medium
Given an array nums, in one move you may increment n - 1 elements by 1. Return the minimum number of moves to make all elements equal. Incrementing n-1 elements is equivalent to decrementing one, so the answer is the sum of each element minus the minimum.
Input: nums = [1,2,3] Output: 3
Input: nums = [1,1,1] Output: 0