From 8034089d1a5e6da29d4ed0406dd2b8606877bed5 Mon Sep 17 00:00:00 2001 From: Falcon43 Date: Sun, 25 Mar 2018 00:33:52 +0530 Subject: [PATCH] update p2.py close_brackets variable not used anywhere --- stacks_queues/p2.py | 1 - 1 file changed, 1 deletion(-) diff --git a/stacks_queues/p2.py b/stacks_queues/p2.py index 55e3db1..eb0e470 100644 --- a/stacks_queues/p2.py +++ b/stacks_queues/p2.py @@ -17,7 +17,6 @@ def is_balanced(brackets): open_brackets = ["(","{","["] - close_brackets = [")","}","]"] bracket_matches = {")":"(", "}":"{", "]":"["} stack = Stack()