Skip to content

Commit

Permalink
fixed k and c points
Browse files Browse the repository at this point in the history
  • Loading branch information
OliBomby committed Nov 25, 2022
1 parent 567f3f3 commit 9ad682d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions SpellCastSolverLib/LetterState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,26 @@ public LetterState(char letter, int pointsMultiplier = 1, int multiplier = 1, bo
public static readonly Dictionary<char, int> LetterPoints = new() {
{ 'a', 1 },
{ 'b', 4 },
{ 'c', 4 },//
{ 'c', 5 },
{ 'd', 3 },
{ 'e', 1 },
{ 'f', 5 },
{ 'g', 3 },
{ 'h', 4 },
{ 'i', 1 },
{ 'j', 7 },
{ 'k', 5 },//
{ 'k', 6 },
{ 'l', 3 },
{ 'm', 4 },
{ 'n', 2 },
{ 'o', 1 },
{ 'p', 4 },//
{ 'p', 4 },
{ 'q', 8 },
{ 'r', 2 },
{ 's', 2 },
{ 't', 2 },
{ 'u', 4 },
{ 'v', 5 },//
{ 'v', 5 },
{ 'w', 5 },
{ 'x', 7 },
{ 'y', 4 },
Expand Down

0 comments on commit 9ad682d

Please sign in to comment.