Find All Duplicates In An Array Tamil Tutorial C++ (LeetCode 442 Medium)

Опубликовано: 07 Июль 2026
на канале: Akhil Chakravarthy - Tamil Coding Tutorials
241
11

Hey Guys! I teach competitive coding questions in Tamil:)
Any suggestions welcome:)
Thanks for watching :D

Follow me on Instagram (@code_chak): https://instagram.com/code_chak?igshi...
Follow me on LinkedIn:   / akhilchakravarthy  
Problem link: https://leetcode.com/problems/find-al...

Problem Description:
Given an array of integers, 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once.

Find all the elements that appear twice in this array.

Could you do it without extra space and in O(n) runtime?

Example:
Input:
[4,3,2,7,8,2,3,1]

Output:
[2,3]