Skip to content

Commit d418959

Browse files
committed
Design Skiplist: Init
1 parent 44b9498 commit d418959

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package leetcode.hard.page5;
2+
3+
public class DesignSkiplist {
4+
public DesignSkiplist() {
5+
6+
}
7+
8+
public boolean search(int target) {
9+
return false;
10+
}
11+
12+
public void add(int num) {
13+
14+
}
15+
16+
public boolean erase(int num) {
17+
return false;
18+
}
19+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package leetcode.hard.page5;
2+
3+
public class HardPage5 {
4+
}

0 commit comments

Comments
 (0)