[algorithm] leetcode 232 - Implement Queue using Stacks (파이썬)
문제 스택을 이용해 다음 연살을 지원하는 큐를 구현하라. push(x): 요소 x를 큐 마지막에 삽입한다. pop(): 큐 처음에 있는 요소를 제거한다. peek(): 큐 처음에 있는 요소를 조회한다. empty(): 큐가 비어 있는지 여부를 리턴한다. leetcode 232 - Implement Queue using Stacks 코드 class MyQueue: def __init__(self): self.input = [] self.output = [] def push(self, x: int) -> None: self.input.append(x) def pop(self) -> int: self.peek() return self.output.pop() def peek(self) -> int: # outp..
알고리즘
2022. 3. 23. 12:08
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 김영한
- Real MySQL
- 인프런
- 문자열
- webflux
- mysql 8.0
- 파이썬
- Algorithm
- 알고리즘
- 북클럽
- 노마드
- spring boot
- MySQL
- 그리디
- 데이터베이스
- Spring
- 자료구조
- leetcode
- kotlin
- 스프링부트
- 릿코드
- 리팩토링
- 정렬
- 백준
- 코테
- 노마드코더
- 코틀린
- 구현
- 스프링 부트
- 스프링
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함