Leetcode-3635 Link : https://leetcode.com/problems/earliest-finish-time-for-land-and-water-rides-ii/ ...
//T.C : O((num2 - num1) * log10(num2)) — for each number we scan its digits //S.C : O(log10(num2)) — space for the digit string of each number ...