0389. Find the Difference
Description
**Input:** s = "abcd", t = "abcde"
**Output:** "e"
**Explanation:** 'e' is the letter that was added.**Input:** s = "", t = "y"
**Output:** "y"**Input:** s = "a", t = "aa"
**Output:** "a"**Input:** s = "ae", t = "aea"
**Output:** "a"ac
Last updated