Skip to content

Commit 0f53fba

Browse files
committed
#442: description update
1 parent 5252332 commit 0f53fba

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

c-sharp/Problems/arrays-and-hashing/FindAllDuplicatesInAnArray.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
* You must write an algorithm that runs in O(n) time and uses only constant extra space.
99
*
1010
* Example 1:
11-
* Input: nums = [4,3,2,7,8,2,3,1]
12-
* Output: [2,3]
11+
* Input: nums = [4,3,2,7,8,2,3,1]
12+
* Output: [2,3]
1313
*
1414
* Example 2:
15-
* Input: nums = [1,1,2]
16-
* Output: [1]
15+
* Input: nums = [1,1,2]
16+
* Output: [1]
1717
*
1818
* Example 3:
19-
* Input: nums = [1]
20-
* Output: []
19+
* Input: nums = [1]
20+
* Output: []
2121
*
2222
* Constraints:
2323
* • n == nums.length
24-
* • 1 <= n <= 105
24+
* • 1 <= n <= 10^5
2525
* • 1 <= nums[i] <= n
2626
* • Each element in nums appears once or twice.
2727
**

0 commit comments

Comments
 (0)