13 lines
250 B
Python
13 lines
250 B
Python
|
|
# This Python file uses the following encoding: utf-8
|
||
|
|
|
||
|
|
# if __name__ == "__main__":
|
||
|
|
# pass
|
||
|
|
|
||
|
|
import os
|
||
|
|
import sys
|
||
|
|
import numpy as np
|
||
|
|
|
||
|
|
def process_arrays(a, b, c, d, e):
|
||
|
|
result = [x + y for x, y in zip(a, b)]
|
||
|
|
return np.array(result), c+d+e
|