wesbos/awesome-uses

Country count growing exponentially

vpicone opened this issue · 2 comments

Country count growing exponentially

Think the issue is here

acc[country.name].count += acc[country.name].count;

Should be

acc[country.name].count += 1;

@iamandrewluca dang beat me to it haha