Skip to content

Commit

Permalink
Solve Big Word in python
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Nov 21, 2024
1 parent 6e46ca1 commit 8fd96ba
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions solutions/beecrowd/3303/3303.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
(ns main)

(defn main []
(loop [line (read-line)]
(when line
(if (< (count line) 10)
(println "palavrinha")
(println "palavrao"))
(recur (read-line)))))

(main)

0 comments on commit 8fd96ba

Please sign in to comment.