diff options
Diffstat (limited to 'progs/a392.py')
-rw-r--r-- | progs/a392.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/progs/a392.py b/progs/a392.py new file mode 100644 index 0000000..0c8da47 --- /dev/null +++ b/progs/a392.py @@ -0,0 +1,9 @@ +def get_Odd_Occurrence(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 |