export default class Util {
public static range(size: number) {
var ans : number[] = [];
for (let i = 0; i < size; i++) {
ans.push(i);
}
return ans;