Skip to content

Commit bc9c2a5

Browse files
refactor 501
1 parent 5e47bc7 commit bc9c2a5

File tree

1 file changed

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

1 file changed

+0
-16
lines changed

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

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,6 @@
99
import java.util.Map;
1010
import java.util.Queue;
1111

12-
/**
13-
* 501. Find Mode in Binary Search Tree
14-
* Given a binary search tree with duplicates. You have to find all the mode(s) in given binary tree.
15-
16-
For example:
17-
Given binary tree [1,null,2,2],
18-
1
19-
\
20-
2
21-
/
22-
2
23-
return [2].
24-
25-
Note: If a tree has more than one mode, you can return them in any order.
26-
27-
*/
2812
public class _501 {
2913

3014
public static class Solution1 {

0 commit comments

Comments
 (0)