Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Solution for Anything by minto
class A(object):
def __init__(self, foo):
self.foo = foo
def __eq__(self, other):
return True
def __ne__(self, other):
return self==other
def __gt__(self , other):
return self==other
def __lt__(self , other):
return self==other
def __ge__(self , other):
return self==other
def __le__(self , other):
return self==other
def checkio(self):
return A(self)
if __name__ == '__main__':
import re
import math
assert checkio({}) != [], 'You'
assert checkio('Hello') < 'World', 'will'
assert checkio(80) > 81, 'never'
assert checkio(re) >= re, 'make'
assert checkio(re) <= math, 'this'
assert checkio(5) == ord, ':)'
print('NO WAY :(')
June 23, 2015