Unfair hurdles are hurdles which are either too high, or way too close together.
Create a function which takes in an array of strings, representing hurdles, and returns whether or not they are unfair. For the purposes of this challenge, unfair hurdles are:
// Hurdle are good distance apart but are way too tall.
isUnfairHurdle([
"# # # #",
"# # # #",
"# # # #",
"# # # #"
]) ➞ true
// Hurdles are a fine height but are way too close together.
isUnfairHurdle([
"# # # #",
"# # # #",
"# # # #"
]) ➞ true
// These hurdles are mighty splendid.
isUnfairHurdle([
"# # # #",
"# # # #"
]) ➞ false
"#".