This problem is inspired by Project Euler 520: Simbers.
"We define a simber to be a positive integer in which any odd digit, if present, occurs an odd number of times, and any even digit, if present, occurs an even number of times.
For example, 141221242 is a 9-digit simber because it has three 1's, four 2's and two 4's."
Given a number, determine if it a simber or not. Please note that the number will be in string format as some of the entries may be quite long. You can assume there will be no leading zeroes in any of the numbers.
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers86
Suggested Problems
-
1470 Solvers
-
Sum all integers from 1 to 2^n
17386 Solvers
-
Given a window, how many subsets of a vector sum positive
870 Solvers
-
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
2035 Solvers
-
337 Solvers
More from this Author80
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Is the test suite broken? The first line sets the input to 141221242 for all of the tests.
It worked fine with me. Maybe it was fixed.
The first test case has been updated to not have global scope.