Fixed the code now it pass all the tests

This commit is contained in:
Gustavo Henrique Santos Souza de Miranda 2025-05-21 01:38:01 -03:00
parent 72279ed09e
commit 401d9ef2df
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ def send_to_goulag(main_list:list)->list:
i = 0
while i < len(main_list) - 1:
while i < len(main_list):
if itens_to_be_reinserted[0] < main_list[i]:
main_list[i:i] = itens_to_be_reinserted
itens_to_be_reinserted.clear()