7 kyu

Odd Ones Out!

1,759 of 5,468megawatt

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]
odd_ones_out([1, 2, 3, 1, 3, 3]) = [1, 1]
odd_ones_out([1, 2, 3, 1, 3, 3]) = [1, 1]
odd_ones_out([1, 2, 3, 1, 3, 3]) = [1, 1]
odd_ones_out([1, 2, 3, 1, 3, 3]) = [1, 1]
odd_ones_out([1, 2, 3, 1, 3, 3]) = [1, 1]
oddOnesOut([1, 2, 3, 1, 3, 3]) = [1, 1]
oddOnesOut([1, 2, 3, 1, 3, 3]) = [1, 1]
oddOnesOut([1, 2, 3, 1, 3, 3]) = [1, 1]
oddOnesOut([| 1, 2, 3, 1, 3, 3 |]) = [| 1, 1 |]
oddOnesOut [1, 2, 3, 1, 3, 3] = [1, 1]
oddOnesOut(c(1, 2, 3, 1, 3, 3)) = c(1, 1)
(odd-ones-out '(1 2 3 1 3 3)) ; '(1 1)
{ 1 2 3 1 3 3 } odd-ones-out ! { 1 1 }
oddOnesOut({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:

oddOnesOut({1, 1, 2, 2, 3, 3, 3}) = {1, 1, 2, 2}
oddOnesOut({26, 23, 24, 17, 23, 24, 23, 26}) = {26, 24, 24, 26}
oddOnesOut({1, 2, 3}) = {}
oddOnesOut({1}) = {}
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]) = []
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]) = []
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]) = []
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]) = []
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]) = []
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]) = []
oddOnesOut([1, 1, 2, 2, 3, 3, 3]) = [1, 1, 2, 2]
oddOnesOut([26, 23, 24, 17, 23, 24, 23, 26]) = [26, 24, 24, 26]
oddOnesOut([1, 2, 3]) = []
oddOnesOut([1]) = []
oddOnesOut([| 1, 1, 2, 2, 3, 3, 3 |]) = [| 1, 1, 2, 2 |]
oddOnesOut([| 26, 23, 24, 17, 23, 24, 23, 26 |]) = [| 26, 24, 24, 26 |]
oddOnesOut([| 1, 2, 3 |]) = [| |]
oddOnesOut([| 1 |]) = [| |]
oddOnesOut([1, 1, 2, 2, 3, 3, 3]) = [1, 1, 2, 2]
oddOnesOut([26, 23, 24, 17, 23, 24, 23, 26]) = [26, 24, 24, 26]
oddOnesOut([1, 2, 3]) = []
oddOnesOut([1]) = []
oddOnesOut([1, 1, 2, 2, 3, 3, 3]) = [1, 1, 2, 2]
oddOnesOut([26, 23, 24, 17, 23, 24, 23, 26]) = [26, 24, 24, 26]
oddOnesOut([1, 2, 3]) = []
oddOnesOut([1]) = []
oddOnesOut [1, 1, 2, 2, 3, 3, 3] = [1, 1, 2, 2]
oddOnesOut [26, 23, 24, 17, 23, 24, 23, 26] = [26, 24, 24, 26]
oddOnesOut [1, 2, 3] = []
oddOnesOut [1] = []
oddOnesOut(c(1, 1, 2, 2, 3, 3, 3)) = c(1, 1, 2, 2)
oddOnesOut(c(26, 23, 24, 17, 23, 24, 23, 26)) = c(26, 24, 24, 26)
oddOnesOut(c(1, 2, 3)) = c()
oddOnesOut(c(1)) = c()
(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)) ; '()
{ 1 1 2 2 3 3 3 } odd-ones-out ! { 1 1 2 2 }
{ 26 23 24 17 23 24 23 26 } odd-ones-out ! { 26 24 24 26 }
{ 1 2 3 } odd-ones-out ! { }
{ 1 } odd-ones-out ! { }

Are you up to the challenge?

Fundamentals
Arrays
Algorithms

More By Author:

Check out these other kata created by megawatt

Stats:

CreatedJul 23, 2019
PublishedJul 23, 2019
Warriors Trained8431
Total Skips245
Total Code Submissions13363
Total Times Completed5468
Python Completions1759
JavaScript Completions1739
Ruby Completions164
Haskell Completions66
PHP Completions182
Dart Completions208
Elixir Completions46
TypeScript Completions164
Julia Completions22
CoffeeScript Completions11
Crystal Completions12
R Completions51
Reason Completions5
Racket Completions17
Factor Completions16
C++ Completions1260
Total Stars85
% of votes with a positive feedback rating92% of 668
Total "Very Satisfied" Votes576
Total "Somewhat Satisfied" Votes75
Total "Not Satisfied" Votes17
Total Rank Assessments38
Average Assessed Rank
7 kyu
Highest Assessed Rank
1 kyu
Lowest Assessed Rank
8 kyu
Ad
Contributors
  • megawatt Avatar
  • Unnamed Avatar
  • JohanWiltink Avatar
  • Blind4Basics Avatar
  • monadius Avatar
  • Aizaz_Ahmad Avatar
  • user8436785 Avatar
  • alexfre Avatar
  • Kacarott Avatar
  • saudiGuy Avatar
Ad