Competitive-Coding-Section icon indicating copy to clipboard operation
Competitive-Coding-Section copied to clipboard

Add files via upload

Open atig05 opened this issue 3 years ago • 0 comments

Given an unsorted integer array nums, return the smallest missing positive integer.

You must implement an algorithm that runs in O(n) time and uses constant extra space.

Example 1:

Input: nums = [1,2,0] Output: 3 Explanation: The numbers in the range [1,2] are all in the array.

atig05 avatar Oct 08 '22 16:10 atig05