diff options
-rw-r--r-- | wk3/pset/runoff/runoff.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wk3/pset/runoff/runoff.c b/wk3/pset/runoff/runoff.c index 66439ac..6c06509 100644 --- a/wk3/pset/runoff/runoff.c +++ b/wk3/pset/runoff/runoff.c @@ -164,7 +164,10 @@ void tabulate(void) // Print the winner of the election, if there is one bool print_winner(void) { - + // go through each candidate + // if they have more than 50% of the votes they win + // + // print winner return false; } |