Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
xingmarc committed Jul 1, 2018
1 parent f977023 commit d4ea9a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ fn main() {
if score_1 > score_2 {
t1_pts += 3;
} else if score_1 < score_2 {
t2_pts += 3; } else {
t2_pts += 3;
} else {
t1_pts += 1;
t2_pts += 1;
}
Expand All @@ -154,6 +155,7 @@ fn main() {
}}
}

// the remaining matches.
let diff = get_remaining_matches(combinition,
&current_combinitions);

Expand Down

0 comments on commit d4ea9a4

Please sign in to comment.