summaryrefslogtreecommitdiff
path: root/progs/a241.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a241.py')
-rw-r--r--progs/a241.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/progs/a241.py b/progs/a241.py
new file mode 100644
index 0000000..87b4697
--- /dev/null
+++ b/progs/a241.py
@@ -0,0 +1,9 @@
+def get_odd_occurence(arr, arr_size):
+ for i in range(0, arr_size):
+ count = 0
+ for j in range(0, arr_size):
+ if arr[i] == arr[j]:
+ count += 1
+ if (count % 2 != 0):
+ return arr[i]
+ return -1 \ No newline at end of file