Problem 44306. Is it really a 5?
A number containing at least one five will be passed to your function, which must return true or false depending upon whether the English spelling of the number may contain "five" anywhere. For example:
n = 5; return true since it is spelled "five" n = 15; return false since it is spelled "fifteen" and does not contain the four-letter string "five"
This criterion applies to any common spelling of the number. For example, 1500 can be written fifteen hundred. But, it can also be written one thousand five hundred. So, 1500 would be considered to contain a "five" for this problem.
See the test suite for more examples.
Solution Stats
Problem Comments
-
1 Comment
regexp should be banned
Solution Comments
Show commentsProblem Recent Solvers311
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15529 Solvers
-
Calculate the Levenshtein distance between two strings
1424 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2299 Solvers
-
Integer Sequence - II : New Fibonacci
491 Solvers
-
A Simple Tide Gauge with MATLAB
378 Solvers
More from this Author139
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!