Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 233 Bytes

smallest-positive-number.md

File metadata and controls

7 lines (4 loc) · 233 Bytes

Find the smallest positive integer that is missing from an unsorted array

Example: int[] a = [1,2,13,14] Answer: 3

Similar Problem