Human Machine Algorithm and Code Reflection
Did your algorithm know when to stop? -Yes, because we included a “stop” button at the end of the program. Did your instructions state where and how to start? -Yes, they do. They tell you where to place your hands on the cards by position. Was it clear where to put cards back down after you've picked them up? -Yes. We used the “swap” command and tried to elaborate within the code as much as possible. Does your card sequencing work for any cards you are given? How did you sort Aces, Kings, Queens? Did you factor in Jokers? What assumptions did you make? -We created a key that told the human operator the order of suit cards, Jokers, and Aces. We specified the order to be “Jack, Queen, King, Ace, Joker”, in order from least to greatest. What questions or challenges did you have in writing your program? What programming concepts connect to prior coding that you have already done? -A challenge we faced while writing the program was thinking about what commands we ...