mckabue's picture
RE_UPLOAD-REBUILD-RESTART
cac6063 verified
raw
history blame contribute delete
356 Bytes
import numpy as np
def get_unique_values(start, end, count):
'''
Returns a list of unique countinous values between start and end
Args:
start: int - less than end
end: int - greater than start
count: int - number of values to return
Returns:
List[int]
'''
return np.arange(start, end, (end - start)/count)[:count]