Daily challenge for 2025-07-29
210. Generate Multiplication Table
Write a function solve that generates a multiplication table for a given number up to a specified limit. Return a list of strings in the format "a x b = c".
Example:Input: number = 3, limit = 4Output: ["3 x 1 = 3", "3 x 2 = 6", "3 x 3 = 9", "3 x 4 = 12"]
Run this challenge interactively in Python or JavaScript when the app loads.