Куклин Михаил Игоревич 524 DummyVec 10618
Бельницкая Елизавета Алексеевна 321 DummyVec 11093
f1class vector:f1class vector:
22
n3    def __init__(self, iterable):n3    def __init__(self, values):
4        self.data = list(iterable)4        self.values = list(values)
55
6    def __str__(self):6    def __str__(self):
n7        return ':'.join(map(str, self.data))n7        return ':'.join(map(str, self.values))
88
9    def __add__(self, other):9    def __add__(self, other):
n10        return vector([x + y for xy in zip(self.data, other)])n10        return vector((v1 + v2 for v1v2 in zip(self.values, other)))
1111
12    def __radd__(self, other):12    def __radd__(self, other):
13        return self.__add__(other)13        return self.__add__(other)
1414
15    def __matmul__(self, other):15    def __matmul__(self, other):
n16        return sum([x * y for xy in zip(self.data, other)])n16        return sum((v1 * v2 for v1v2 in zip(self.values, other)))
1717
18    def __getitem__(self, index):18    def __getitem__(self, index):
t19        return self.data[index]t19        return self.values[index]
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op