summaryrefslogtreecommitdiff
path: root/wk3/pset
diff options
context:
space:
mode:
Diffstat (limited to 'wk3/pset')
-rw-r--r--wk3/pset/runoff/runoff.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/wk3/pset/runoff/runoff.c b/wk3/pset/runoff/runoff.c
index f8a17fd..4295300 100644
--- a/wk3/pset/runoff/runoff.c
+++ b/wk3/pset/runoff/runoff.c
@@ -141,7 +141,10 @@ bool vote(int voter, int rank, string name)
// Tabulate votes for non-eliminated candidates
void tabulate(void)
{
- // TODO
+ for (int i = 0; i < candidate_count; i++)
+ {
+
+ }
return;
}