Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Nov 20, 2024
1 parent bbb0495 commit 1ffa18a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions solutions/beecrowd/1077/1077.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down

0 comments on commit 1ffa18a

Please sign in to comment.