Skip to content

Commit

Permalink
fix field
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Dec 10, 2024
1 parent 7545955 commit 608d339
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
org.clojure/java.classpath {:mvn/version "1.0.0"}
org.clojure/tools.analyzer {:mvn/version "1.2.0"}
org.clojure/tools.analyzer.jvm {:git/url "https://github.com/borkdude/tools.analyzer.jvm"
:git/sha "86e7d1f6f1aa048b468d42ed9a596b6104012416"}
:git/sha "318dc38f0a903fabb22a7e2caafea5a5b4c37df8"}
#_{:mvn/version "1.3.0"}
babashka/fs {:mvn/version "0.5.22"}
borkdude/edamame {:mvn/version "1.4.24"}
Expand Down
2 changes: 1 addition & 1 deletion notebooks/clojure_1_12.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
(defn to-matrix [input]
(for [line (String/.split input "\\n")
:let [numbers (String/.split line "\\s+")]]
(map parse-long #_Long/parseLong numbers)))
(map Long/parseLong numbers)))

(to-matrix "1 1 2
4 5 6")

0 comments on commit 608d339

Please sign in to comment.