Generate a multiplication table for a given number up to a specified limit. Return a list of strings representing each line of the table.
Examples:
Input: num = 5, tableSize = 3
Output: ['5 x 1 = 5', '5 x 2 = 10', '5 x 3 = 15']
Explanation: The multiplication table for 5 with 3 rows is returned as a list of strings
Input: num = 12, tableSize = 5
Output: ['12 x 1 = 12', '12 x 2 = 24', '12 x 3 = 36', '12 x 4 = 48', '12 x 5 = 60']
Explanation: The multiplication table for 12 with 5 rows is returned as a list of strings
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Note
You can test your code by connecting to Salesforce, but to save your progress and earn points, you'll need to create an account. Your solutions and achievements will be tracked automatically once you're logged in.