LC: 161. One Edit Distance
https://leetcode.com/problems/encode-and-decode-strings/
Input: s = "ab", t = "acb"
Output: true
Explanation: We can insert 'c' into s to get t.Input: s = "", t = ""
Output: false
Explanation: We cannot get t from s by only one step.Input: s = "a", t = ""
Output: trueInput: s = "", t = "A"
Output: trueLast updated