Skip to content

Instantly share code, notes, and snippets.

View kunalasingh's full-sized avatar

Kunal Arunkumar Singh kunalasingh

View GitHub Profile
@teeschorle
teeschorle / Plurality.c
Last active October 21, 2021 06:23
CS50 Problem Set 3 (Fall 2019) - Plurality
#include <cs50.h>
#include <stdio.h>
#include <string.h>
// Max number of candidates
#define MAX 9
// Candidates have name and vote count
typedef struct
{