Week 7: Exercises

1. Sort

Write a program sort.py that takes a filename on the command line. The program should sort the file's lines in alphabetical order and print the result to standard output. For example,

$ cat text
one two
three four
five six
seven eight
$ py sort.py
usage: sort.py <filename>
$ py sort.py text
five six
one two
seven eight
three four
$ 

2. Colored Grep

Modify the 'grep' utility we wrote in the lecture so that it prints matching strings in color:

$ py grep.py horse war_and_peace
the morning, carriages with six horses had been coming and going
horse—that I’ll warrant,” said Shinshín, patting him on the
out as a post horse, but still I must have a talk with you, Catiche, a
...

If a string has multiple matches in an output line, all of them should be colored:

shouts of thousands of voices. His horse and the horse of the hussar

Use the sty library that we learned about last week for producing colored terminal output.

3. Duplicate Letters

Write a function has_dups(s) that takes a string and returns True if the string has any duplicate letters. The string may contain any Unicode characters such as 'λ' or 'ř'.

4. Unique Word Count

Write a program that reads text from standard input until it ends, and prints the number of unique words in the input.

5. Same Values

Write a function same_values(l, m) that returns True if the lists l and m contain the same values, i.e. every element of l is in m and every element of m is in l. You may assume that all list elements are immutable.

6. Words in Both Lists

Write a program that reads input as follows. The first line of standard input will contain an integer N. The next N lines will contain a list of words, one per line. The next line will contain an integer M. The next M lines will contain a second list of words, one per line. The program should print out all words that are contained in both lists. Write each word on a separate line. You may write the output words in any order.

Sample input:

3
donut
cookie
cake
4
cake
bread
jam
donut

Possible output:

cake
donut

7. Most Common Characters

Write a program that reads a string and print out the five most common characters in the string along with their occurrence counts, e.g.

e 23

t 20

o 18

n 15

i 14

Write the characters in decreasing order of frequency. The string may contain any Unicode characters.

8. Combining Dictionaries

Write a function combine(d, e) that takes two dictionaries. It should return a dictionary that maps x to z if d maps x to some y, and e maps y to z. For example, suppose that d is a dictionary that maps Czech words to English words, and e maps English words to Spanish words:

>>> d = { 'žába' : 'frog', 'kočka' : 'cat', 'kráva' : 'cow' }
>>> e = { 'cow' : 'vaca', 'cat' : 'gato', 'dog' : 'perro' }

Then combine(d, e) will map Czech to Spanish:

>>> combine(d, e)
{'kočka': 'gato', 'kráva': 'vaca'}

Notice that 'žába' is not a key in the resulting dictionary, since e doesn't map 'frog' to anything. Similarly, 'perro' is not a value in the resulting dictionary, since d doesn't map anything to 'dog'.

9. Duplicate Values

  1. Write a function that takes a list of integers and returns True if there are any duplicate values in the list. Use sorting to accomplish this task. Do not modify the original list.

  2. Write a function with the same behavior, using a set to accomplish the task.

  3. Which implementation do you think will be faster on a large list in the best case? In the worst case?

  4. As an experiment, generate a list of random 1,000,000 integers in the range from 1 to 1,000,000,000, then call both of the above functions on your list. How does the exection time compare?

  5. Modify the experiment so that all the integers your generated list are unique. Now run both functions on your list. How does the execution time compare?

10. Random Intersection

Write a program that creates two sets of 10,000 random numbers from 1 to 1,000,000, then computes and prints their intersection. How many values do you expect that the intersection will contain, approximately?

11. Time Class

Write a class Time that represents a time of day with 1-second resolution, e.g. 11:32:07.

12. Polynomial Class

Write a class Polynomial representing a polynomial of a single variable. The class should support these operations:

13. Flatten

Write a function flatten that takes a list of lists and returns a list containing all the values from all sublists:

>>> flatten([[5, 2], [6], [8, 3]])
[5, 2, 6, 8, 3]

14. Deep Flatten

Write a function deep_flatten that takes a list that may contain sublists nested to any level. The function should return a list containing all the values from all the sublists:

>>> deep_flatten([ [[5, 2], 6], [8, 3], [[[[10]]]] ])
[5, 2, 6, 8, 3, 10]