Daily challenge for 2025-04-16
106. Find the Difference of Two Strings
Write a function solve that finds the character that differs between two strings where one string has one extra character.
Example:Input: s="abcd", t="abcde"Output: "e"
Run this challenge interactively in Python or JavaScript when the app loads.