Odd Ones Out!
Description:
The town sheriff dislikes odd numbers and wants all odd numbered families out of town! In town crowds can form and individuals are often mixed with other people and families. However you can distinguish the family they belong to by the number on the shirts they wear. As the sheriff's assistant it's your job to find all the odd numbered families and remove them from the town!
Challenge: You are given a list of numbers. The numbers each repeat a certain number of times. Remove all numbers that repeat an odd number of times while keeping everything else the same.
odd_ones_out([1, 2, 3, 1, 3, 3]) = [1, 1]
In the above example:
- the number 1 appears twice
- the number 2 appears once
- the number 3 appears three times
2
and 3
both appear an odd number of times, so they are removed from the list. The final result is: [1,1]
Here are more examples:
odd_ones_out([1, 1, 2, 2, 3, 3, 3]) = [1, 1, 2, 2]
odd_ones_out([26, 23, 24, 17, 23, 24, 23, 26]) = [26, 24, 24, 26]
odd_ones_out([1, 2, 3]) = []
odd_ones_out([1]) = []
Are you up to the challenge?
Similar Kata:
Stats:
Created | Jul 23, 2019 |
Published | Jul 23, 2019 |
Warriors Trained | 8431 |
Total Skips | 245 |
Total Code Submissions | 13363 |
Total Times Completed | 5468 |
Python Completions | 1759 |
JavaScript Completions | 1739 |
Ruby Completions | 164 |
Haskell Completions | 66 |
PHP Completions | 182 |
Dart Completions | 208 |
Elixir Completions | 46 |
TypeScript Completions | 164 |
Julia Completions | 22 |
CoffeeScript Completions | 11 |
Crystal Completions | 12 |
R Completions | 51 |
Reason Completions | 5 |
Racket Completions | 17 |
Factor Completions | 16 |
C++ Completions | 1260 |
Total Stars | 85 |
% of votes with a positive feedback rating | 92% of 668 |
Total "Very Satisfied" Votes | 576 |
Total "Somewhat Satisfied" Votes | 75 |
Total "Not Satisfied" Votes | 17 |
Total Rank Assessments | 38 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 1 kyu |
Lowest Assessed Rank | 8 kyu |