Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 327 Bytes

File metadata and controls

6 lines (4 loc) · 327 Bytes

442. Find All Duplicates in an Array

Medium

Given an integer array nums of length n where all the integers of nums are in the range [1, n] and each integer appears once or twice, return an array of all the integers that appears twice.

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