Skip to content

Latest commit

 

History

History

unused-digits

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Filtering Unused Digits

Given a varying number of integer arguments, return the digits that are not present in any of them.

Example

[12, 34, 56, 78]  =>  "09"
[2015, 8, 26]     =>  "3479"

Note: the digits in the resulting string should be sorted.