AdventOfCode/2019/vector.py

3 lines
51 B
Python
Raw Normal View History

2019-12-18 02:04:40 +01:00
def v2a(a, b):
return a[0] + b[0], a[1] + b[1]