Joshimuz / mcbingo

A Minecraft Bingo sheet generator
GNU Affero General Public License v3.0
28 stars 19 forks source link

generator_v3 has been refactored to use Sets #100

Closed rybak closed 3 years ago

rybak commented 3 years ago

generator_v3 keeps track of antisynergys, reactants, and catalysts on the sheet using three arrays. Logic for all three of those requires a unique set of strings, and two of these arrays (reactants and catalysts) are deduplicated for every generated goal.

So use the Set type for keeping track of antisynergys, reactants, and catalysts of goals, already added to the sheet.

Fix the spelling in comments, while we're here.