• + 0 comments
    Java 8
    public static int lonelyinteger(List<Integer> a) {
        // Write your code here
        int n=0;
        for(int i=0;i<a.size();i++)
        {
            if(a.indexOf(a.get(i))==a.lastIndexOf(a.get(i)))
            {
                n=a.get(i);
            }
        }
         return n;
        }
    
    }
    

    `