Daily challenge for 2025-07-09
190. Convert Seconds to HH:MM:SS
Write a function solve that takes an integer representing seconds and converts it to a string formatted as HH:MM:SS (24-hour format). Leading zeros should be added when necessary.
Example:Input: 3661Output: "01:01:01"
Run this challenge interactively in Python or JavaScript when the app loads.