You are given three inputs: a string, one letter, and a second letter.
Write a function that returns true if every instance of the first letter occurs before every instance of the second letter.
first_before_second("a rabbit jumps joyfully", "a", "j") ➞ true
# every instance of "a" occurs before every instance of "j"
first_before_second("knaves knew about waterfalls", "k", "w") ➞ true
first_before_second("happy birthday", "a", "y") ➞ false
# the "a" in "birthday" occurs after the "y" in "happy"
first_before_second("precarious kangaroos", "k", "a") ➞ false