Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Shortest? solution in Creative category for Golden Pyramid by StefanPochmann
c=count_gold=lambda p,i=0:len(p)and p[0][i]+max(c(p[1:],i),c(p[1:],i+1))
April 15, 2015
Comments: