We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b5bd29 commit be4cabcCopy full SHA for be4cabc
src/main/java/com/fishercoder/solutions/_242.java
@@ -19,7 +19,7 @@
19
20
public class _242 {
21
22
- public static class SortingSolution {
+ public static class Solution1 {
23
public boolean isAnagram(String s, String t) {
24
char[] schar = s.toCharArray();
25
char[] tchar = t.toCharArray();
@@ -29,7 +29,7 @@ public boolean isAnagram(String s, String t) {
29
}
30
31
32
- public static class CountingSolution {
+ public static class Solution2 {
33
34
if (s == null || t == null || s.length() != t.length()) {
35
return false;
0 commit comments