Problem 2456. remove single elements

Given a vector of integers, remove the elements that have appeared only once. The output elements should be in exact order as the input except the single elements being removed.
Example:
Input: vec = [2 2 1 2 3 4 1 2];
Output: [2 2 1 2 1 2];
Loops are not allowed.

Solution Stats

30.4% Correct | 69.6% Incorrect
Last Solution submitted on Jan 30, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers96

Suggested Problems

More from this Author44

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!