Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
17<<16 solution in Creative category for Remove Accents by veky
from unicodedata import combining, normalize
compose = lambda f, g: lambda x: f(g(x))
del_accents = dict.fromkeys(filter(compose(combining, chr), range(17<<16)))
checkio = lambda in_string: normalize('NFD', in_string).translate(del_accents)
Nov. 24, 2015
Comments: