CS101. A18 - Card Games
CS101. A18 - Card Games
CS101. A18 - Card Games
Elyse is really looking forward to playing some poker (and other card games) during her upcoming trip to
Vegas. Being a big fan of "self-tracking" she wants to put together some small functions that will help her
with tracking tasks and has asked for your help thinking them through.
Elyse is especially fond of poker, and wants to track how many rounds she plays - and which rounds those
are. Every round has its own number, and every table shows the round number currently being played.
Elyse chooses a table and sits down to play her first round. She plans on playing three rounds.
Implement a function get_rounds(<round_number>) that takes the current round number and returns a
single list with that round and the next two that are coming up:
>>> get_rounds(27)
[27, 28, 29]
Elyse played a few rounds at the first table, then took a break and played some more rounds at a second
table ... but ended up with a different list for each table! She wants to put the two lists together, so she can
track all of the poker rounds in the same place.
Implement a function concatenate_rounds(<rounds_1>, <rounds_2>) that takes two lists and returns a
single list consisting of all the rounds in the first list, followed by all the rounds in the second list:
Talking about some of the prior Poker rounds, another player remarks how similarly two of them played out.
Elyse is not sure if she played those rounds or not.
Elyse wants to try out a new game called Black Joe. It's similar to Black Jack - where your goal is to have
the cards in your hand add up to a target value - but in Black Joe the goal is to get the average of the card
values to be 7. The average can be found by summing up all the card values and then dividing that sum by
the number of cards in the hand.
Implement a function card_average(<hand>) that will return the average value of a hand of Black Joe.
>>> card_average([5, 6, 7])
6.0
5. Alternate Averages
In Black Joe, speed is important. Elyse is going to try and find a faster way of finding the average.
● Take the average of the first and last number in the hand.
● Using the median (middle card) of the hand.
Implement the function approx_average_is_average(<hand>), given hand, a list containing the values of
the cards in your hand.
Return True if either one or both of the, above named, strategies result in a number equal to the actual
average.
Note: The length of all hands are odd, to make finding a median easier.
Intrigued by the results of her averaging experiment, Elyse is wondering if taking the average of the cards
at the even positions versus the average of the cards at the odd positions would give the same results.
Time for another test function!
Every 11th hand in Black Joe is a bonus hand with a bonus rule: if the last card you draw is a Jack, you
double its value.
Implement a function maybe_double_last(<hand>) that takes a hand and checks if the last card is a Jack
(11). If the the last card is a Jack (11), double its value before returning the hand.
def get_rounds(number):
"""
def card_average(hand):
"""
def approx_average_is_average(hand):
"""
def average_even_is_average_odd(hand):
"""
Sample output
Shown in the description
Test Cases
Function Inputs Output
get_rounds 0 [ 0, 1, 2]
get_rounds 1 [1, 2, 3]
concatenate_rounds [ ], [ ] []
concatenate_rounds [ 0, 1 ], [ ] [ 0, 1 ]
concatenate_rounds [ ], [ 1, 2 ] [ 1, 2 ]
concatenate_rounds [27, 28, 29], [35, 36] [27, 28, 29, 35, 36]
list_contains_round [ ], 1 False
********
CS101. A19 - Basic Robot Simulator
Write a robot simulator. A robot factory's test facility needs a program to verify robot movements. The
robots have 4 possible movements (by one step):
● move right
● move left
● move up
● move down
Robots are placed on a hypothetical infinite grid in the standard quadrant system. A robot’s location is
identified with a set of {x,y} coordinates, e.g., position {3,8}, is in the (+,+) quadrant.
The robot then receives a number of instructions, at which point the testing facility verifies the robot's new
position, and in which direction it is pointing.
Tasks to complete
Implement a move function. Input parameter is a tuple with 2 elements. Element 0 is a another tuple with 2
elements (x_pos, y_pos). Element 1 is the route string.
Sample output
move(((3,8), "RRDDDL"))
(4,5)
Test Cases
Function Inputs Return Value
********
CS101. A20 - Spiral Matrix
Given the size, return a square matrix of numbers in spiral order. The matrix should be filled with natural
numbers, starting from 1 in the top-left corner, increasing in an inward, clockwise spiral order, like these
examples:
Examples
Spiral matrix of size 3 Spiral matrix of size 4
123 1 2 3 4
894 12 13 14 5
765 11 16 15 6
10 9 8 7
Tasks to implement:
Fill the function spiral_matrix. Input: n (of the n x n matrix). Output: List of rows of the matrix. Each row is a
list.
def spiral_matrix(size):
pass
Sample output
Shown below
Test Cases
Function Inputs Output
spiral_matrix 0 []
spiral_matrix 1 [[1]]
********