Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Exercise: compare rows

  • Create an iterable that given two files will return true for each line where the first space in the first file is earlier than the first space in the second file. So

  • given: "ab cd" vs "abc d" the value is true

  • given: "ab cd" vs "ab cd" the value is false

  • given: "ab cd" vs "a bcd" the value is false