For a given vector, find all numbers that repeated 2 times or more than 2 times.
Example:
A=[1 2 3 3 4 5 6 6 7] y=[3 6]
Example:
A=[1 1 1 1 0 1 1 2 2 9] y=[1 2]
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers58
Suggested Problems
-
Find common elements in matrix rows
2721 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2069 Solvers
-
Back to basics 4 - Search Path
383 Solvers
-
Find the largest value in the 3D matrix
1688 Solvers
-
Add a row of zeros on top of a matrix
269 Solvers
More from this Author18
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Please adjust your Test Suite. In the first test case please test for an empty array using "isempty", not equality to "[]". See Solution 1539918. —DIV
Same issue illustrated in Solution 1539926.