|
|
8 年 前 | |
|---|---|---|
| .. | ||
| .meta | 8 年 前 | |
| src | 8 年 前 | |
| README.md | 9 年 前 | |
| build.gradle | 9 年 前 | |
Given a word, compute the scrabble score for that word.
You'll need these:
Letter Value
A, E, I, O, U, L, N, R, S, T 1
D, G 2
B, C, M, P 3
F, H, V, W, Y 4
K 5
J, X 8
Q, Z 10
"cabbage" should be scored as worth 14 points:
And to total:
3 + 2*1 + 2*3 + 2 + 13 + 2 + 6 + 35 + 9You can run all the tests for an exercise by entering
$ gradle test
in your terminal.
Inspired by the Extreme Startup game https://github.com/rchatley/extreme_startup
It's possible to submit an incomplete solution so you can see how others have completed the exercise.