aboutsummaryrefslogtreecommitdiff
path: root/challenge-130/lubos-kolouch/python/ch-1.py
blob: c06058975fe0c804403930e4d2a32430fefc233e (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from functools import reduce
from operator import xor

N = [2, 5, 4, 4, 5, 5, 2]
odd = reduce(xor, N)
print(odd)