index
:
clp.git
main
A small Python compiler with optimizer written in Java
Ubuntu
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
progs
/
a703.py
blob: d0b9171a7913db63cea25b7f126ad3e88cffbf6e (
plain
)
1
2
def sum_three_smallest_nums(lst): return sum(sorted([x for x in lst if x > 0])[:3])