4. List Manipulation Basics - 80/100
Здравейте,
Моля за съдействие, дава ми 80/100 в judge, но не мога да разбера къде е проблемът.
Кодът ми е: https://pastebin.com/CtnATT4j
Ето и условието:
Write a program that reads a list of integers. Then until you receive "end", you will be given different commands:
Add {number}: add a number to the end of the list
Remove {number}: remove a number from the list
RemoveAt {index}: remove a number at a given index
Insert {number} {index}: insert a number at a given index
Note: All the indices will be valid!
When you receive the "end" command print the final state of the list (separated by spaces)
Example
Input |
Output |
4 19 2 53 6 43 Add 3 Remove 2 RemoveAt 1 Insert 8 3 end |
4 53 6 8 43 3 |
Благодаря,
Прав си наистина е така, всичко си работи след поправката и дава 100/100.