index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
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
])