change_strings.md

April 23, 2022 ยท View on GitHub

Change Strings

Modify the string "cat" to "bat"

Soltuion

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

Contents

  1. 1Change Strings
  2. 1.1Soltuion