Skip to content

Commit 4795613

Browse files
refactor 242
1 parent d32aabb commit 4795613

File tree

1 file changed

+0
-15
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-15
lines changed

src/main/java/com/fishercoder/solutions/_242.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,6 @@
22

33
import java.util.Arrays;
44

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-
205
public class _242 {
216

227
public static class Solution1 {

0 commit comments

Comments
 (0)