I have a list with numbers like this :-
s = [5542, 5654, 7545]
The goal is to remove the first 5 from the number such that the resultant list is like this
s = [542, 654, 745]
What's the best way to achieve the following without using any external libraries?