CS61A Homework 3
Homework 3: Recursion, Tree Recursion hw03.zip
Parsons Problems
Q1: Neighbor Digits
Problem Statement
Implement the function neighbor_digits
. neighbor_digits
takes in an integer num
and an optional argument prev_digit
. neighbor_digits
outputs the number of digits in num
that have the same digit to its right or left.
1 | >>> neighbor_digits(111) |
Solution
1 | def neighbor_digits(num, prev_digit=-1): |
Q2: Has Subsequence
Problem Statement
Implement the function has_subseq
, which takes in a number n
and a “sequence” of digits seq
. The function returns whether n
contains seq
as a subsequence, which does not have to be consecutive.
1 | >>> has_subseq(123, 12) |
Solution
1 | def has_subseq(n, seq): |
Code Writing Questions
Q3: Num eights
Write a recursive function num_eights
that takes a positive integer pos
and returns the number of times the digit 8 appears in pos
.
Important: Use recursion; the tests will fail if you use any assignment statements. (You can however use function definitions if you so wish.)
1 | def num_eights(pos): |
Q4: Ping-pong
The ping-pong sequence counts up starting from 1 and is always either counting up or counting down. At element k
, the direction switches if k
is a multiple of 8 or contains the digit 8. The first 30 elements of the ping-pong sequence are listed below, with direction swaps marked using brackets at the 8th, 16th, 18th, 24th, and 28th elements:
Index | 1 | 2 | 3 | 4 | 5 | 6 | 7 | [8] | 9 | 10 | 11 | 12 | 13 | 14 | 15 | [16] | 17 | [18] | 19 | 20 | 21 | 22 | 23 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
PingPong Value | 1 | 2 | 3 | 4 | 5 | 6 | 7 | [8] | 7 | 6 | 5 | 4 | 3 | 2 | 1 | [0] | 1 | [2] | 1 | 0 | -1 | -2 | -3 |
Index (cont.) | [24] | 25 | 26 | 27 | [28] | 29 | 30 |
---|---|---|---|---|---|---|---|
PingPong Value | [-4] | -3 | -2 | -1 | [0] | -1 | -2 |
Implement a function pingpong
that returns the nth element of the ping-pong sequence without using any assignment statements. (You are allowed to use function definitions.)
You may use the function num_eights
, which you defined in the previous question.
Important: Use recursion; the tests will fail if you use any assignment statements. (You can however use function definitions if you so wish.)
Hint: If you’re stuck, first try implementing
pingpong
using assignment statements and awhile
statement. Then, to convert this into a recursive solution, write a helper function that has a parameter for each variable that changes values in the body of the while loop.Hint: There are a few pieces of information that we need to keep track of. One of these details is the direction that we’re going (either increasing or decreasing). Building off of the hint above, think about how we can keep track of the direction throughout the calls to the helper function.
1 | def pingpong(n): |
Q5: Count coins
Given a positive integer change
, a set of coins makes change for change
if the sum of the values of the coins is change
. Here we will use standard US Coin values: 1, 5, 10, 25. For example, the following sets make change for 15
:
- 15 1-cent coins
- 10 1-cent, 1 5-cent coins
- 5 1-cent, 2 5-cent coins
- 5 1-cent, 1 10-cent coins
- 3 5-cent coins
- 1 5-cent, 1 10-cent coin
Thus, there are 6 ways to make change for 15
. Write a recursive function count_coins
that takes a positive integer change
and returns the number of ways to make change for change
using coins.
You can use either of the functions given to you:
get_larger_coin
will return the next larger coin denomination from the input, i.e.get_larger_coin(5)
is10
.get_smaller_coin
will return the next smaller coin denomination from the input, i.e.get_smaller_coin(5)
is1
.
There are two main ways in which you can approach this problem. One way uses get_larger_coin
, and another uses get_smaller_coin
.
Important: Use recursion; the tests will fail if you use loops.
Hint: Refer the implementation of
count_partitions
for an example of how to count the ways to sum up to a final value with smaller parts. If you need to keep track of more than one value across recursive calls, consider writing a helper function.
1 | def get_larger_coin(coin): |
Optional Questions
Homework assignments will also contain prior exam-level questions for you to take a look at. These questions have no submission component; feel free to attempt them if you’d like a challenge!
- Fall 2017 MT1 Q4a: Digital
- Summer 2018 MT1 Q5a: Won’t You Be My Neighbor?
- Fall 2019 Final Q6b: Palindromes