Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re.sub solution in Creative category for Behind 2048 by gyahun_dash
from itertools import chain
from re import sub
def transpose(state):
return [list(row) for row in zip(*state)]
def slide(row):
strlist = str([cell for cell in row if cell > 0])
compress = eval(sub(r'(?
June 16, 2014
Comments: