Contents
add_lists()
Adds two lists of integers of the same length pointwise.
Example:
>>> add_lists([1,2,3],[0,1,2]) [1, 3, 5]
list1 (list[int]) – A list of integers.
list
int
list2 (list[int]) – A list of integers.
list[int]
Pointwise addition of list1 and list2.