CMU 15-112 Fall 2015 Homework 4 Practice
(Due never)



Some Worked Examples Using Lists:
  1. The Locker Problem
  2. Anagrams
  3. The Sieve of Eratosthenes
  4. The Prime Counting Function
  5. Sorting (selection, bubble, merge, builtin sorts)
More Practice:
  1. median(a) from here
  2. alternatingSum(a) from here
  3. mostCommonName(a) from here
  4. isRotation(a1, a2) from here
  5. missingNumber(a) from here
  6. split() from here
  7. join () from here
  8. nonDestructiveRotateList from here
  9. destructiveRotateList from here
  10. histogram() here