Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- Dynamic Programming
- Top-down
- 알고리즘
- BubbleSort
- GCP
- 그리디
- 백준
- cpu scheduling
- Python
- KAKAO
- kubernetes
- 피보나치
- Singleton Pattern
- LeetCode
- mobaXTerm
- 파이썬
- java
- docker
- k8s
- golang
- go
- easy
- Programmers
- GKE
- Kotlin
- Observer Pattern
- Codility
- Backjoon
- github
Archives
- Today
- Total
To Be Developer
[LeetCode] 225. Implement Stack using Queues 본문
class MyStack(object):
# stack 변수 선언
stack = None
def __init__(self):
"""
Initialize your data structure here.
"""
# class 생성시 전역변수 stack 에 비어있는 List 대입
self.stack = []
def push(self, x):
"""
Push element x onto stack.
:type x: int
:rtype: None
"""
# push method 호출시 stack list 맨 뒤에 원소 추가
self.stack.append(x)
def pop(self):
"""
Removes the element on top of the stack and returns that element.
:rtype: int
"""
# pop method 실행시 stack 변수의 맨 뒤에 원소 꺼낸다.
return self.stack.pop()
def top(self):
"""
Get the top element.
:rtype: int
"""
# top method 호출 시 stack list 의 맨 뒤의 원소 가리킴.
return self.stack[-1]
def empty(self):
"""
Returns whether the stack is empty.
:rtype: bool
"""
# stack의 길이가 0이면 True, 그렇지 않으면 False Return
return len(self.stack) == 0
# Your MyStack object will be instantiated and called as such:
# obj = MyStack()
# obj.push(x)
# param_2 = obj.pop()
# param_3 = obj.top()
# param_4 = obj.empty()
'알고리즘 > LeetCode' 카테고리의 다른 글
| [LeetCode] Reverse Words in a String (0) | 2019.03.19 |
|---|---|
| [LeetCode] 231. Power of Two (0) | 2019.03.13 |
| [LeetCode] 189. Rotate Array.py (0) | 2019.03.08 |
| [LeetCode] 7. Reverse Integer (0) | 2019.03.06 |
| [LeetCode] Two Sum ll - Input array is sorted (0) | 2019.03.05 |