about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/stack.py
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/scratch/facebook/stack.py')
-rw-r--r--users/wpcarro/scratch/facebook/stack.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/users/wpcarro/scratch/facebook/stack.py b/users/wpcarro/scratch/facebook/stack.py
new file mode 100644
index 0000000000..2a843e2216
--- /dev/null
+++ b/users/wpcarro/scratch/facebook/stack.py
@@ -0,0 +1,25 @@
+class Stack(object):
+    def __init__(self):
+        self.items = []
+
+    def __repr__(self):
+        return self.items.__repr__()
+
+    def push(self, x):
+        self.items.append(x)
+
+    def pop(self):
+        if not self.items:
+            return None
+        return self.items.pop()
+
+    def peek(self):
+        if not self.items:
+            return None
+        return self.items[-1]
+
+def from_list(xs):
+    result = Stack()
+    for x in xs:
+        result.push(x)
+    return result