mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
8 lines
171 B
Python
8 lines
171 B
Python
import numpy as np
|
|
|
|
def hash_object_array(
|
|
arr: np.ndarray, # np.ndarray[object]
|
|
key: str,
|
|
encoding: str = ...,
|
|
) -> np.ndarray: ... # np.ndarray[np.uint64]
|