Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3-liner: *stones solution in Creative category for The Final Stone by przemyslaw.daniel
def final_stone(s):
*s, a, b = sorted(s + [0, 0])
return final_stone(s + [b - a]) if a else b
Aug. 9, 2022
Comments: