Problem
Given an integer array <code>nums</code>, return <em>the maximum difference between two successive elements in its sorted form</em>. If the array contains less than two elements, return <code>0</code>. You must write an algorithm that runs in linear time and uses linear extra space.Examples
Constraints
1 <= nums.length <= 10^50 <= nums[i] <= 10^9