Solutions to Leetcode 389. Find the Difference
Problem statement
You are given two strings s and t.
String t is generated by random shuffling string s and then adding one more letter at a random position.
Return the letter that was added to t.
Example 1
Input: s = "abcd", t = "abcde"
Output: "e"
...
nhutnguyen.hashnode.dev4 min read