In this video we solve another challenge from Codewars called Multiplication table:
Your task, is to create NxN multiplication table, of size provided in parameter.
for example, when given size is 3:
1 2 3
2 4 6
3 6 9
for given example, the return value should be: [[1,2,3],[2,4,6],[3,6,9]]
Here is the link to the challenge:
https://www.codewars.com/kata/534d2f5...