Th35py27 / CSP

MIT License
0 stars 0 forks source link

Final Project Plan #9

Open Th35py27 opened 4 months ago

Th35py27 commented 4 months ago

My idea is to create a game similar to that of New York Times Connections for people that are interested in the game.

Loops: I will incorporate loops in my code by having a list of categories and specific words that go in each category stored in a list. I will use the loops to randomly generate 4 word categories from a list of about 100 categories.

Sorting / Searching:

For each category, it will be labeled as either easy, medium level, or difficult level, and each connections game will contain one of each category to maintain consistency and following the rules of the game.

BIG O Notation: I will test in the backend how long it takes for the program to randomly generate 4 categories from easiest to hardest and make sure that no repeats occur along the way.

2D iteration:

I will use the iteration in order to make sure that there are no repeats in the categories list when displaying the categories on the frontend. I will most likely use a matrix to store all the lists and categories to ensure no duplicates.