11 lines
146 B
Python
11 lines
146 B
Python
from algorithm import algorithm
|
|
import json
|
|
import ray
|
|
import numpy as np
|
|
a = np.zeros(shape=(5,2))
|
|
b = []
|
|
print(a)
|
|
print(type(b))
|
|
print(len(b))
|
|
|