Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,939 questions

51,876 answers

573 users

How to find the first repeating element in an array of integers with Python

1 Answer

0 votes
def get_first_repeating_element(arr):
    x = -1
    dic = dict()

    for i in range(len(arr) - 1, -1, -1):
        if arr[i] in dic.keys(): 
            x = i
        else: 
            dic[arr[i]] = 1

    if (x != -1):
        return arr[x]

    return 0
    


arr = [1, 2, 4, 5, 6, 5, 4, 3, 7]

n = get_first_repeating_element(arr)

if (n != -1):
    print("First repeating element is:", n)
else:
    print("No repeating elements")
    
    
    
'''
run:

First repeating element is: 4

'''

 



answered May 13, 2019 by avibootz
...