Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
ȷǚșϯ⋯ƥłåîŋ⋯ȃѡφǖƛ solution in Creative category for Remove Accents by smilicic
from unicodedata import name
checkio = lambda X: "".join(map(lambda x: x if ord(x)<128 else (lambda n=name(x).split(" "): "" if n[0]=="COMBINING" else x if n[2]!="LETTER" else n[3] if n[1] == "CAPITAL" else n[3].lower())(), X))
Dec. 14, 2016
Comments: