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 4d682cc commit cfc7f83Copy full SHA for cfc7f83
src/main/java/com/fishercoder/solutions/_448.java
@@ -5,22 +5,6 @@
5
import java.util.List;
6
import java.util.Map;
7
8
-/**
9
- * 448. Find All Numbers Disappeared in an Array
10
- *
11
- * Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.
12
- * Find all the elements of [1, n] inclusive that do not appear in this array.
13
- * Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space.
14
-
15
- Example:
16
17
- Input:
18
- [4,3,2,7,8,2,3,1]
19
20
- Output:
21
- [5,6]
22
23
- */
24
public class _448 {
25
26
public static class Solution1 {
0 commit comments