We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 232663c commit b4cb580Copy full SHA for b4cb580
src/main/java/g0001_0100/s0080_remove_duplicates_from_sorted_array_ii/readme.md
@@ -16,7 +16,9 @@ The judge will test your solution with the following code:
16
17
int[] nums = [...]; // Input array
18
int[] expectedNums = [...]; // The expected answer with correct length
19
+
20
int k = removeDuplicates(nums); // Calls your implementation
21
22
assert k == expectedNums.length;
23
for (int i = 0; i < k; i++) {
24
assert nums[i] == expectedNums[i];
0 commit comments