Problem 3047. Scrabble Scores - 2

An introductory Cody problem asks the user to score a Scrabble word. This problem is part of a set of problems that successively develop a more sophisticated Scrabble scoring routine.

Scrabble is a word board game wherein each letter tile is scored roughly according to its frequency (or lack thereof) in words. More common letters, such as vowels, are worth fewer points while difficult letters, such as Q, Z, J, and X are worth more points. The point distribution is provided here. (Use the English points distribution.)

For this problem, you will be provided with a cell array of words (e.g., all the words from one player in a game). Write a function to calculate the total score for the set of words.

Related problems:

Previous problem: 1 - Single-word scoring. Next problem: 3 - Single-word multiplier scoring.

Solution Stats

47.37% Correct | 52.63% Incorrect
Last Solution submitted on Mar 08, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers58

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!