AdventOfCode/2019/vector.py
2019-12-18 02:04:40 +01:00

3 lines
51 B
Python

def v2a(a, b):
return a[0] + b[0], a[1] + b[1]