01. Distinct List - More Exercises: Lists
You will be given a list of integers on the first line of the input (space-separated). Remove all repeating elements from the list.
Examples
Input |
Output |
Comments |
1 2 3 4 |
1 2 3 4 |
No repeating elements |
7 8 9 7 2 3 4 1 2 |
7 8 9 2 3 4 1 |
7 and 2 are already present in the list remove them |
20 8 12 13 4 4 8 5 |
20 8 12 13 4 5 |
4 and 8 are already present in the list remove them |
Кода ми е http://pastebin.com/kkhjEvLA .
На джъдж ми дава 80/100.
Някой може ли да ми помогне да разбера от къде ми е грешката ,че аз нещо от 1 час немога да я схвана къде е ? :)
Благодаря !
Съвсем изключих и за такъв вариант.