Hola !!
From the reference: https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/BasicOperators.html#//apple_ref/doc/uid/TP40014097-CH6-ID60
It didn't make sense to accept that
(1, "zebra") < (2, "apple") is true since ("zebra") < ("apple") is false
Aren't the comparision operators < and > suppose to work same as == ? i.e. less iff all elements are less.
Please would someone be able to clarify ? Cheers !