Login and get codingWrite a function that accepts a list of digits and returns the smallest number that can be created by combining unique digits.
Therefore, you have to ignore duplicated digits.
Examples:
[1]
=>1
[7, 1]
=>17
[1, 9, 5, 9, 1]
=>159
Note: An empty input list
[]
should return0
.
211 out of 212 users completed this Bite.
Will you be Pythonista #212 to crack this Bite?
Resolution time: ~24 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 3.0 on a 1-10 difficulty scale.
» You can do it! 😌