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