int makeArrayConsecutive2(int[] statues) { return statues.Max() - statues.Min() + 1 - statues.Length; }