287. Find the Duplicate Number
Given an array of integers nums containing n + 1 integers where each integer is in the range [1, n] inclusive.
There is only one repeated number in nums, return this repeated number.
- new solution update 2022.02.25
c++
1 | class Solution { |
c++
1 | class Solution { |