Skip to content

Commit 822f899

Browse files
refactor 96
1 parent b86680b commit 822f899

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/_96.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 96. Unique Binary Search Trees
5-
*
6-
* Given n, how many structurally unique BST's (binary search trees) that store values 1...n?
7-
8-
For example,
9-
Given n = 3, there are a total of 5 unique BST's.
10-
11-
1 3 3 2 1
12-
\ / / / \ \
13-
3 2 1 1 3 2
14-
/ / \ \
15-
2 1 2 3
16-
17-
*/
183
public class _96 {
194

205
public static class Solution1 {

0 commit comments

Comments
 (0)