(no title)
cwhy | 5 years ago
def begin(*args):
return args[-1]
begin(
func := lambda x, y: begin(
z := int(input()),
x + y + z
),
func(1, 2)
)
from `https://news.ycombinator.com/item?id=23346534`cwhy | 5 years ago
def begin(*args):
return args[-1]
begin(
func := lambda x, y: begin(
z := int(input()),
x + y + z
),
func(1, 2)
)
from `https://news.ycombinator.com/item?id=23346534`
No comments yet.