Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
2D Recursion solution in Creative category for Multiplication Table by StefanPochmann
checkio=c=lambda a,b,m=2:a and b and(a|b)%2*m+c(a,b/2,m*2)+(m<3and c(a/2,b))
April 22, 2015
Comments: