Daily challenge for 2026-01-10
375. String Array Character Sum
Given an array of strings, calculate the total number of characters across all strings in the array.
Example:Input: words = ["hello", "world", "a"]Output: 11 (5 + 5 + 1)
Run this challenge interactively in Python or JavaScript when the app loads.