def UnEqualHexes(): hexes = [hexc.AbstractHex(x, x + 1, -x - (x + 1)) for x in range(50)] return list(zip(hexes, reversed(hexes)))
def Hexes(): return [hexc.AbstractHex(x, x + 1, -x - (x + 1)) for x in range(50)]
def faux_slice(): return [(h, i) for i, h in enumerate(list(hexc.AbstractHex(0, 0).within(10)))]