I need to do the following:
- Create a variable result as an array of length m.
For each row i from 0 to m-1:
a. Set result[i] to a new array of length n.
b. For each column j in row i, set that element to (i*n)+j.
- When you’ve computed all the elements, return result.
So far, I have the following:
def f2(m, n):
result = [""] * m
for i in range(0, m):
result[i] = [""] * n
for i in result:
for j in i:
result.append(i*n+j)
return result
This, however, just results in an error.
Any help/suggestions? Thank you
Here you go:
Hope this helsp!