Exercise: compare files


Compare two files line-by-line, and create a 3rd file listing the lines that are different.


examples/iterators/first.txt
One
Two
Three
Four
Five

examples/iterators/second.txt
One
Two
Tree
Four
Five

Expected output:


examples/iterators/diff.txt
2,Three,Tree