Problem 56. Scrabble Scores
Given a word, determine its score in Scrabble.
The input string will always be provided in lower case. Use the English language Scrabble letter values as found in this Wikipedia reference: letter distributions for English.
Example:
Input str = 'matlab' Output score is 10.
Solution Stats
Problem Comments
-
2 Comments
Why don't you provide the counting system inside the function? What's the point of retyping it from wiki?
@Jonas
I agree
case {'l','s','u','n','r','t','o','a','i','e'}
score=1
case {'g','d'}
score=2
case {'b','c','m','p'}
score=3
case {'f','h','v','w','y'}
score=4
case {'k'}
score=5
case {'j','x'}
score=8
case {'q','z'}
score=10
Solution Comments
Show commentsProblem Recent Solvers2096
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6362 Solvers
-
given 3 sides, find area of this triangle
807 Solvers
-
Longest run of consecutive numbers
5834 Solvers
-
Back to basics - mean of corner elements of a matrix
428 Solvers
-
Number of Even Elements in Fibonacci Sequence
1431 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!