We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96a1ff0 commit 14b55e0Copy full SHA for 14b55e0
src/main/java/com/fishercoder/solutions/_788.java
@@ -5,6 +5,9 @@
5
6
public class _788 {
7
public static class Solution1 {
8
+ /**
9
+ * My very original, but non-DP solution.
10
+ */
11
public int rotatedDigits(int N) {
12
int count = 0;
13
Map<Character, String> map = new HashMap<>();
0 commit comments