diff --git a/solutions/beecrowd/1077/1077.clj b/solutions/beecrowd/1077/1077.clj index 1fccd714..41d6d609 100644 --- a/solutions/beecrowd/1077/1077.clj +++ b/solutions/beecrowd/1077/1077.clj @@ -34,13 +34,14 @@ (recur remaining-terms (conj terms-stack term) postfix-expression)) - (when (opening-parenthesis? term) - (loop )) + ;; (when (opening-parenthesis? term) + ;; (loop )) (when (operand? term) (recur remaining-terms terms-stack (conj postfix-expression term))) - (when (operator? term)))) + ;; (when (operator? term)) + )) (defn main [] (loop [n (Integer/parseInt (read-line))]