Card Picker

How simple is it to draw a pair of cards that would generate a unique enough shuffle to merit use? The question is interesting to say the least. If you were to take a random number generator from software you would eventually cycle through the results. Finding a good way to shuffle cards is important. I used a Fisher-Yates Shuffle with a a random number generator however in an ideal scenario the random number generator would be a hardware device catching data that would convert the result to an integer between 1 and 52 in order to properly get a random read from the data.

In the meantime, this proof of concept is able to give a unique shuffle so long as the random number generator is adequate enough for the iterations used. Some variations to this shuffle may be used in a professional enviornment but with a bettter random number generator.

Project for CSC350 Card Picker