Skip to content

Instantly share code, notes, and snippets.

View wbhaao's full-sized avatar
🐯
Playing

김규민 wbhaao

🐯
Playing
  • 부산소프트웨어마이스터고등학교
  • Republic of Korea
  • 05:47 (UTC +09:00)
View GitHub Profile
@Jang-Seonguk
Jang-Seonguk / Stack.py
Last active November 28, 2023 01:20
Python을 이용한 Stack 구현
class Stack :
def __init__(self):
self.top = []
def isEmpty(self):
return len(self.top) == 0
def size(self):
return len(self.top)