Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Solution for Anything by barbuza
# migrated from python 2.7
class checkio(object):
def __init__(self, _):
pass
def check(self, _):
return True
__eq__ = check
__ne__ = check
__gt__ = check
__ge__ = check
__lt__ = check
__le__ = check
if __name__ == '__main__':
import re, 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 :(')
Jan. 18, 2012
Comments: