Files
python/matrix/example.py

9 lines
227 B
Python
Raw Normal View History

2014-03-18 05:34:18 +01:00
class Matrix(object):
def __init__(self, s):
self.rows = [[int(n) for n in row.split()]
for row in s.split('\n')]
@property
def columns(self):
return map(list, zip(*self.rows))