forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_788.java
39 lines (36 loc) · 1.14 KB
/
_788.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
38
39
package com.fishercoder.solutions;
import java.util.HashMap;
import java.util.Map;
public class _788 {
public static class Solution1 {
public int rotatedDigits(int N) {
int count = 0;
Map<Character, String> map = new HashMap<>();
map.put('0', "0");
map.put('1', "1");
map.put('8', "8");
map.put('2', "5");
map.put('5', "2");
map.put('6', "9");
map.put('9', "6");
for (int i = 1; i <= N; i++) {
if (isRotatedNumber(i, map)) {
count++;
}
}
return count;
}
private boolean isRotatedNumber(int num, Map<Character, String> map) {
String originalNum = String.valueOf(num);
StringBuilder sb = new StringBuilder();
for (char c : String.valueOf(num).toCharArray()) {
if (!map.containsKey(c)) {
return false;
} else {
sb.append(map.get(c));
}
}
return !originalNum.equals(sb.toString());
}
}
}