DEV Community

I Want To Learn Programming
I Want To Learn Programming

Posted on

Code Challenge of the Day: Number appearing once (others thrice) (hard)

Every value appears three times except one, which appears once. Return that value.
Write single_three(nums).

Starter:

def single_three(nums):
    # TODO
    pass
Enter fullscreen mode Exit fullscreen mode

Solve it interactively in your browser (no setup), check your answer instantly, and keep your daily streak going on IWTLP: https://iwtlp.com/challenge

Top comments (0)