Shelby Programming Algorithms
Shelby Simmons Programming Algorithms
Week 1
Week 2
Lab:
- The code would be faster if it was only shuffled once, as the shuffleArray function is ran each time the button is pressed.
- Pop/push takes the first array element and adds it to the end of the array, not changing the total count of elements within the array whereas shift/unshift completely removes the first array element from the array and changes the index for each array element to a lower index.
- I think shift/unshift works well with the bingo game example as it shows what array element is next and what others remain while shortening the index count for better readability as the game continues. When it comes to the called output I think as long as it is sorted it works well enough especially with the current called number displayed larger than the rest of the data and is in bold text.
Week 3
Week 4
HW Part 2: Question
A suggestion-based algorithm can work with any sort of website where the content/products offered are related in some way, whether comparable to other viewed items or frequently purchased/viewed together. This can be done with websites that sell products, blogs, social media, etc. I think PHP is the preferable language for this as it conceals the code used for these algorithms as it contains information to the database.
Week 5