You are viewing a single comment's thread. Return to all comments →
Python Solution
def wrapper(f): def fun(l): striped = sorted([i[-10:] for i in l]) for i in striped: print("+91 "+i[0:5]+" "+i[5:]) return fun
Seems like cookies are disabled on this browser, please enable them to open this website
Standardize Mobile Number Using Decorators
You are viewing a single comment's thread. Return to all comments →
Python Solution