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 d32aabb commit 4795613Copy full SHA for 4795613
src/main/java/com/fishercoder/solutions/_242.java
@@ -2,21 +2,6 @@
2
3
import java.util.Arrays;
4
5
-/**
6
- * 242. Valid Anagram
7
- * Given two strings s and t, write a function to determine if t is an anagram of s.
8
-
9
- For example,
10
- s = "anagram", t = "nagaram", return true.
11
- s = "rat", t = "car", return false.
12
13
- Note:
14
- You may assume the string contains only lowercase alphabets.
15
16
- Follow up:
17
- What if the inputs contain unicode characters? How would you adapt your solution to such case?
18
- */
19
20
public class _242 {
21
22
public static class Solution1 {
0 commit comments