You will be given a string consisting of a list of integers and their relationships to their neighboring integers. For instance:
"-15<-10<=0=0<5"Test to see that all the relationships between the integers in the string are true. If they are, return true. If they are not, return false.
validate_relationships("5>-1<0=0<-5>5=5") ➞ false
# This is false because 0 is not less than -5.
validate_relationships("-15<-10<=0=0<5") ➞ true
validate_relationships("0=807<1000<=1000>9990<-3605<=20") ➞ false
# This is false because 0 is not equal to 807.=, <, >, >=, <=