9
SaLaH-1
5 15
432/ 445
#SaLah Ytm
Last seen 2 years ago
Member for 3 years, 8 months, 8 days
Difficulty Normal
Best reviews / Newest reviews
First-noctus57
you can use res='' from typing import List def letter_queue(commands: List[str]) -> str: Res='' for i in commands: i=i.split() if i[0] =='POP': Res=Res[1:] else : Res+=i[1] return Res More
First: command dictionary-keromage
complicated from typing import List def letter_queue(commands: List[str]) -> str: Res='' for i in commands: i=i.split() if i[0] =='POP': Res=Res[1:] else : Res+=i[1] return Res More
First-Steven2222
from typing import List def letter_queue(commands: List[str]) -> str: Res='' for i in commands: i=i.split() if i[0] =='POP': Res=Res[1:] else : Res+=i[1] return Res More