Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
EFanZh committed Nov 4, 2023
1 parent 52a762b commit 9a8ec5b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ impl Solution {

score = score.wrapping_add(match top * 3 + current {
0 | 1 | 2 | 3 | 6 => 0, // 00 | 01 | 02 | 10 | 20.
4 => 6_u8.wrapping_neg(), // 11
5 | 7 => 1_u8.wrapping_neg(), // 12 | 21
_ => 4, // 22
4 => 6_u8.wrapping_neg(), // 11.
5 | 7 => 1_u8.wrapping_neg(), // 12 | 21.
_ => 4, // 22.
});
}

Expand Down

0 comments on commit 9a8ec5b

Please sign in to comment.