Examples:
'SUNDAY' --> 6
'MONDAY' --> 6
'TUESDAY' --> 7
'WEDNESDAY' --> 9
'THURSDAY' --> 8
'FRIDAY' --> 5
'SATURDAY' --> 8
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers262
Suggested Problems
-
Replace NaNs with the number that appears to its left in the row.
3064 Solvers
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1305 Solvers
-
616 Solvers
-
Convert given decimal number to binary number.
2276 Solvers
-
94 Solvers
More from this Author27
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
since friday maps to 5, the answer should be:
floor((sum(lower(x))-40)/100)
According to the description 'FRIDAY' should return the value '5' but it's actually '6'. Please correct the description, my brain almost broke trying to figure out why it's supposed to be '5' :)