I want to create a function allow to compare some elements like accélérer, Accelerer, ACCELERER...etc
and return True as result (if we have the same base letter).
example:
compare('accélérer','ACCELERER') // will be true
compare('accélérer','accelerer') // will be true
compare('accélérer','test') // will be false
thanks