September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
|
|
@ -1,2 +1,2 @@
|
|||
(defn palindrome? [s]
|
||||
(= s (apply str (reverse s))))
|
||||
(= s (clojure.string/reverse s)))
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
(defn palindrome? [s]
|
||||
(loop [i 0
|
||||
j (dec (. s length))]
|
||||
(cond (>= i j) true
|
||||
(= (get s i) (get s j))
|
||||
(recur (inc i) (dec j))
|
||||
:else false)))
|
||||
(defn palindrome? [^String s]
|
||||
(loop [front 0 back (dec (.length s))]
|
||||
(or (>= front back)
|
||||
(and (= (.charAt s front) (.charAt s back))
|
||||
(recur (inc front) (dec back)))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue