21: Find difference
Given two lower case strings: first and second. The second string is the randomized first string plus one character. Find the added character
Example 1
Input: first = abc, second = dacb
Output: d
Example 2
Input: first = ab, second = acb
Output: c