| Points |
Task |
| 5 |
Can tell if two files are
identical |
| 5 |
Can tell which lines differ
between the two files. The "sort and compare" trick might help
here. |
| 5 |
Uses an algorithm better than
O(n^2) to find lines that differ |
| Points |
Task |
| 5 |
Can tell which words are
misspelled |
| 5 |
Uses an algorithm better than
O(n^2). Associative arrays might help here |
| 5 |
Also checks against a "naught
word" list. |
| -5 |
It's case sensitive |