Multiplication table
Return a multiplication table of the given number in a list.
Make sure there are only 5 elements in the List.
Sample Code:
def timesTable(num):
# Enter your logic here...
Examples:
Input: 7
Output: [7,14,21,28,35]
Explanation: 7x1, 7x2, 7x3, 7x4, 7x5
Input: 10
Output: [10,20,30,40,50]
Explanation: 10x1, 10x2, 10x3, 10x4, 10x5