|
il y a 5 ans | |
---|---|---|
.. | ||
README.md | il y a 5 ans | |
ScrabbleScore.fs | il y a 5 ans | |
ScrabbleScore.fsproj | il y a 5 ans | |
ScrabbleScoreTests.fs | il y a 5 ans |
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 + 1
3 + 2 + 6 + 3
5 + 9
To run the tests, run the command dotnet test
from within the exercise directory.
F# source code can be formatted with the Fantomas tool.
After installing it with dotnet tool restore
, run dotnet fantomas .
to format code within the current directory.
For more detailed information about the F# track, including how to get help if you’re having trouble, please visit the exercism.io F# language page.
Inspired by the Extreme Startup game https://github.com/rchatley/extreme_startup