Skip to content

Instantly share code, notes, and snippets.

@edm234
edm234 / Ballot.java
Created April 23, 2025 03:00
Ranked Choice Voting Implementation in Java
package src;
import java.util.ArrayList;
public class Ballot extends Election {
private int totalCount = 0;
private String voterName;
private int[] voteFor;
private int id = 0000;