@@ -36,6 +36,13 @@ class Matrix3x3:
def __setitem__(self, key, value):
self.rows[key] = value
def __str__(self):
tmp = ""
for row in self.rows:
tmp += str(row)
tmp += "\n"
return tmp
class Matrix4x4(Matrix3x3):
def __init__(self, row1, row2, row3, row4):
The note is not visible to the blocked user.