Does Java have an equivalent to Python\'s range(int, int) method?
range(int, int)
public int[] range(int start, int stop) { int[] result = new int[stop-start]; for(int i=0;i
Forgive any syntax or style errors; I normally program in C#.