File size: 356 Bytes
cac6063
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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]