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
/
a405.py
blob: bec4015b29cbd27813c27b59aa2d828d5215e9db (
plain
)
1
2
def
find_Sum
(
arr
,
n
):
return
sum
([
x
for
x
in
arr
if
arr
.
count
(
x
)
>
1
])