Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 114 Bytes

change_strings.md

File metadata and controls

7 lines (4 loc) · 114 Bytes

Change Strings

Modify the string "cat" to "bat"

Soltuion

"cat".replace("c", "b") OR "b" + "cat"[1:]