-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMaximumDifferenceByRemappingADigit.java
37 lines (33 loc) · 1.1 KB
/
MaximumDifferenceByRemappingADigit.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// https://leetcode.com/problems/maximum-difference-by-remapping-a-digit
// T: O(log(N))
// S: O(1)
public class MaximumDifferenceByRemappingADigit {
public int minMaxDifference(int num) {
final String number = num + "";
final int maxDigit = maxDigit(number);
final int minDigit = minDigit(number);
return maxDigit - minDigit;
}
private int maxDigit(String x) {
for (int i = 0 ; i < x.length() ; i++) {
int digit = x.charAt(i) - '0';
if (digit < 9) {
return changeOccurrence(x, digit, 9);
}
}
return Integer.parseInt(x);
}
private int minDigit(String x) {
for (int i = 0 ; i < x.length() ; i++) {
int digit = x.charAt(i) - '0';
if (digit != 0) {
return changeOccurrence(x, digit, 0);
}
}
return Integer.parseInt(x);
}
private int changeOccurrence(String x, int digit, int to) {
final String result = x.replace((char) (digit + '0'), (char) (to + '0'));
return Integer.parseInt(result);
}
}