Create a function that returns true if a given inequality expression is correct and false otherwise.
true
false
correct_signs("3 < 7 < 11") ➞ true correct_signs("13 > 44 > 33 > 1") ➞ false correct_signs("1 < 2 < 6 < 9 > 3") ➞ true
N/A