0
Please help me: generate a matrix of a size nx2n and set the values according to: Mij=i·j²-i²·(j-2), where i=row, j=column
How do I solve this in Python 3.7?
3 odpowiedzi
+ 4
Here I've created one for you.
https://code.sololearn.com/cuXDjf3vA7AI/?ref=app
+ 2
What's your approach so far?
You need a 2-dim array and nested for loops
0
I literally have no idea how to even start, I'm very new at this