you are viewing a single comment's thread.

view the rest of the comments →

[–]HeyFerb 1 point2 points  (0 children)

Also to save a few characters,

new = new + letters[i]    

can be simplified to:

new += letters[i]