Given a fraction as a string, return whether or not it is greater than 1 when evaluated.
greater_than_one("1/2") ➞ false greater_than_one("7/4") ➞ true greater_than_one("10/10") ➞ false
Fractions must be strictly greater than 1 (see example #3).