add spaces
This commit is contained in:
parent
a415fba3e9
commit
507c690583
@ -2,12 +2,13 @@
|
|||||||
|
|
||||||
static int ses_score_sw(char c) {
|
static int ses_score_sw(char c) {
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case 'e': case 'E': return 12;
|
case 'e': case 'E': return 13;
|
||||||
case 't': case 'T': return 11;
|
case 't': case 'T': return 12;
|
||||||
case 'a': case 'A': return 10;
|
case 'a': case 'A': return 11;
|
||||||
case 'o': case 'O': return 9;
|
case 'o': case 'O': return 10;
|
||||||
case 'i': case 'I': return 8;
|
case 'i': case 'I': return 9;
|
||||||
case 'n': case 'N': return 7;
|
case 'n': case 'N': return 8;
|
||||||
|
case ' ': return 7;
|
||||||
case 's': case 'S': return 6;
|
case 's': case 'S': return 6;
|
||||||
case 'h': case 'H': return 5;
|
case 'h': case 'H': return 5;
|
||||||
case 'r': case 'R': return 4;
|
case 'r': case 'R': return 4;
|
||||||
@ -24,4 +25,4 @@ int simple_english_scoring(const char *s) {
|
|||||||
score += ses_score_sw(*c);
|
score += ses_score_sw(*c);
|
||||||
}
|
}
|
||||||
return score;
|
return score;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user