[Programming Fundamentals] Ununion Lists
Здравейте,
Имам проблем с едната задача от упражненията за списъци.
Ето го условието:
Ununion Lists
You will be given a sequence of integers, separated by a space. This is the primal list. Then you will receive an
integer N. On the next N lines, you will receive sequences of integers. Your task is to add all elements that the
primal list does not contain from the current sequence to the primal list and then remove from the primal list, all
elements which are contained in the current sequence of integers. If there are several occurrences, remove all
occurrences you find.
After you are done receiving lists and manipulating the primal list, sort the primal list and print it.
Не виждам къде греша. Всички нулеви тестове излизат в Judge, но останалите не.
Ето го и кодa ми
Опитах и с foreach цикъл. По същия начин само нулевите тестове минават.
Според мен кодът ми е идентичен на твоя, освен че е на Java. Странно защо не минава.
Благодаря все пак за отговора.
Може би проблемът ти е, че работиш със стрингове, а не с числа, както е по условие.
Виж този пример какво връща: