Sobes.tech
Junior — Senior

Function that returns unique elements of an array

livecode

Task condition

The function receives a list of numbers and creates a new list containing only those values that appear exactly once in the original list.

def get_unique_numbers(arr):
    # implementation will be here
    pass