Daily challenge for 2025-06-07
158. Find the Missing Letter
Write a function solve that takes a list of consecutive letters (increasing order, one missing) and returns the missing letter. The input will always be a list of single-character strings with exactly one letter missing.
Example:Input: ["a", "b", "c", "e"]Output: "d"
Run this challenge interactively in Python or JavaScript when the app loads.