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
-
2366 Solvers
-
Get the area codes from a list of phone numbers
1072 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1991 Solvers
-
Convert a numerical matrix into a cell array of strings
2384 Solvers
-
Are all the three given point in the same line?
600 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.