##Leap My code: here
-
Responder #1 (here) - This user used a similar if/else approach to my own but nested conditions instead of using && operators.
-
Responder #2 (here) - Much cleaner that the first responder. By use of the & and || operator the user was able to demonstrate a clear implementation.
-
Responder #3 (here) - It would have been possible for the user to return multple true condition by using the & operator instead of having 4 if statements.
-
Responder #4 (here) - This is similar to the 2nd user but this user was able to complete all conditions on one line knowing that it would automaitically return false if none of these conditions were met.