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 8dbd0ab commit 76336bcCopy full SHA for 76336bc
src/main/java/com/fishercoder/solutions/_448.java
@@ -64,7 +64,7 @@ public static class Solution2 {
64
* O(1) space
65
* O(n) time
66
*/
67
- public List<Integer> findDisappearedNumbers_2(int[] nums) {
+ public List<Integer> findDisappearedNumbers(int[] nums) {
68
69
for (int i = 0; i < nums.length; i++) {
70
int val = Math.abs(nums[i]) - 1;
0 commit comments