While you may submit to Gradescope as often as you like for this assignment,
some questions are not autograded, so you will be responsible for testing your code
and making sure it meets the problem requirements.
Do not use recursion this week.
The autograder (or a manual CA review later) will reject your submission entirely if you do.
Like in the previous assignments, we will be grading your code based on whether
it follows the 15-112 style guide. We
may deduct up to 10 points from your overall grade for style errors. We highly
recommend that you try to write clean code with good style all along, rather
than fixing your style issues at the end. Good style helps you code faster and
with fewer bugs. It is totally worth it. In any case, style grading already
started, so please use good style from now on!
-
invertDictionary(d) [15 pts]
Write the function invertDictionary(d)
that takes a dictionary
d
that maps keys to values and returns a dictionary of its inverse,
that maps the original values back to their keys. One complication: there can be
duplicate values in the original dictionary. That is, there can be keys
k1
and k2
such that (d[k1] == v) and (d[k2] ==
v)
for the same value v
. For this reason, we will in fact
map values back to the set of keys that originally mapped to them. So, for
example:
assert(invertDictionary({1:2, 2:3, 3:4, 5:3}) == {2:set([1]),3:set([2,5]), 4:set([3])})
Also, you may assume that the values in the original dictionary are all
immutable, so that they are legal keys in the resulting inverted dictionary.
-
destinationCity(paths) [15 pts]
You are given a dictionary paths
, where paths[cityA] =
cityB
means there exists a direct path going from cityA
to cityB
. Return the destination city, that is, the city without
any path outgoing to another city.
It is guaranteed that the paths form a line without any loop, therefore, there
will be exactly one destination city.
Consider the following examples:
paths = {
'London': 'New York',
'New York': 'Lima',
'Lima': 'Sao Paulo'
}
The destination city is "Sao Paulo". Starting at any city you will reach "Sao Paulo" city which is the destination city. For instance, starting at "London"
city, our trip consist of: "London" -> "New York" -> "Lima" -> "Sao Paulo".
paths = {
'B' : 'C',
'D' : 'B',
'C' : 'A'
}
All possible trips are:
"D" -> "B" -> "C" -> "A".
"B" -> "C" -> "A".
"C" -> "A".
"A".
Clearly the destination city is "A".
-
groupAnagrams(S) [15 pts]
Given a list of strings S
, group the anagrams together.
Two strings are anagrams if each can be reordered into the other. Treat "a" and
"A" as the same letters (so "Aba" and "BAA" are anagrams).
The function should return a list of groups, in any order. Each group is a set
of strings where all the strings are anagrams of each other.
Some examples:
S = ["eat","tea","tan","ate","nat","bat"]
groupAnagrams(S)
will group the strings in the following way:
[{"bat"},{"nat","tan"},{"ate","eat","tea"}]
S = ["own", "read", "dare", "eat", "now", "stop", "now", "spot", "15112", "tea"]
groupAnagrams(S)
will group the strings in the following way:
[{"own", "now"}, {"read","dare"}, {"eat","tea"}, {"stop", "spot"}, {"15112"}]
The order of the groups in the returned list is not important. The size
of S
will be large, therefore you should avoid using lists
operations as much as possible, otherwise your solution will be too slow and
will timeout. We expect that your code processes an input of 30K words in less
than a minute.
-
movieAwards(oscarResults) [15 pts]
Write the function movieAwards(oscarResults) that takes a set of tuples, where each tuple holds the name of a category and the name of the winning movie, then returns a dictionary mapping each movie to the number of the awards that it won. For example, if we provide the set:
{
("Best Picture", "The Shape of Water"),
("Best Actor", "Darkest Hour"),
("Best Actress", "Three Billboards Outside Ebbing, Missouri"),
("Best Director", "The Shape of Water"),
("Best Supporting Actor", "Three Billboards Outside Ebbing, Missouri"),
("Best Supporting Actress", "I, Tonya"),
("Best Original Score", "The Shape of Water")
}
the program should return:
{
"Darkest Hour" : 1,
"Three Billboards Outside Ebbing, Missouri" : 2,
"The Shape of Water" : 3,
"I, Tonya" : 1
}
Note: Remember that sets and dictionaries are unordered! For the example above, the returned set may be in a different order than what we have shown, and that is ok.
-
containsPythagoreanTriple(a) [15 pts]
Write the function containsPythagoreanTriple(a)
that takes a list of positive integers and returns True
if there are 3 values (a,b,c) anywhere in the list such that (a,b,c) form a Pythagorean Triple, where:
$$a^2 + b^2 == c^2$$
So [1,3,6,2,5,1,4]
returns True
because of (3,4,5) are in the list, and $$3^2 + 4^2 == 5^2$$
A naive solution would be to check every possible triple (a,b,c) in the list. You'll have to do better than that.
-
Big-O Calculation (Manually graded) [25 pts]
In a triple-quoted string at the top of your file (just below your name), include solutions to this exercise. For each of the following functions:
- State in just a few words what it does in general.
- Write the Big-O time or number of loops for each line of the program, then state the resulting Big-O of the whole program.
- Provide an equivalent Python function (named fastN, where N corresponds to the case) that is more than a constant-factor faster (so its worst-case Big-O runtime is in a different function family). The better your solution's Big-O runtime, the more points you get!
- Write the Big-O time or number of loops for each line of the new program, then state the resulting Big-O of the whole program.
def slow1(lst): # N is the length of the list lst
assert(len(lst) >= 2)
a = lst.pop()
b = lst.pop(0)
lst.insert(0, a)
lst.append(b)
def slow2(lst): # N is the length of the list lst
counter = 0
for i in range(len(lst)):
if lst[i] not in lst[:i]:
counter += 1
return counter
import string
def slow3(s): # N is the length of the string s
maxLetter = ""
maxCount = 0
for c in s:
for letter in string.ascii_lowercase:
if c == letter:
if s.count(c) > maxCount or \
s.count(c) == maxCount and c < maxLetter:
maxCount = s.count(c)
maxLetter = c
return maxLetter
def slow4(a, b): # a and b are lists with the same length N
n = len(a)
assert(n == len(b))
result = abs(a[0] - b[0])
for c in a:
for d in b:
delta = abs(c - d)
if (delta > result):
result = delta
return result