TIL | 큐 With Python

이도운·2022년 1월 3일
0

TIL

목록 보기
23/73
post-thumbnail

큐 With Python

from collections import deque

queue = deque()

queue.append(1)
queue.append(3)
queue.append(5)
queue.popleft()

print(queue)
profile
⌨️ 백엔드개발자 (컴퓨터공학과 졸업)

0개의 댓글