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
/
a482.py
blob: da6fe1fad26d78b19e29ecc7668130a9ff3fc921 (
plain
)
1
2
3
4
5
def
search
(
arr
,
n
)
:
XOR
=
0
for
i
in
range
(
n
)
:
XOR
=
XOR
^
arr
[
i
]
return
(
XOR
)