Skip to content

Commit 27d3ec3

Browse files
authored
Update readme.md
1 parent 792e7da commit 27d3ec3

File tree

1 file changed

+6
-2
lines changed
  • src/main/java/g1201_1300/s1206_design_skiplist

1 file changed

+6
-2
lines changed

src/main/java/g1201_1300/s1206_design_skiplist/readme.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ Note that duplicates may exist in the Skiplist, your code needs to handle this s
2626

2727
**Example 1:**
2828

29-
**Input** ["Skiplist", "add", "add", "add", "search", "add", "search", "erase", "erase", "search"] [[], [1], [2], [3], [0], [4], [1], [0], [1], [1]]
29+
**Input**
30+
31+
["Skiplist", "add", "add", "add", "search", "add", "search", "erase", "erase", "search"]
32+
33+
[[], [1], [2], [3], [0], [4], [1], [0], [1], [1]]
3034

3135
**Output:** [null, null, null, null, false, null, true, false, true, false]
3236

@@ -46,4 +50,4 @@ Note that duplicates may exist in the Skiplist, your code needs to handle this s
4650
**Constraints:**
4751

4852
* <code>0 <= num, target <= 2 * 10<sup>4</sup></code>
49-
* At most <code>5 * 10<sup>4</sup></code> calls will be made to `search`, `add`, and `erase`.
53+
* At most <code>5 * 10<sup>4</sup></code> calls will be made to `search`, `add`, and `erase`.

0 commit comments

Comments
 (0)