March 2014 update
This commit is contained in:
parent
09687c4926
commit
a25938f123
1846 changed files with 21876 additions and 5203 deletions
|
|
@ -2,7 +2,5 @@
|
|||
(cond
|
||||
(and (empty? s1) (empty? s2)) true
|
||||
(not= (empty? s1) (empty? s2)) false
|
||||
:else
|
||||
(if (= (first s1) (first s2))
|
||||
(recur (rest s1) (rest s2))
|
||||
false)))
|
||||
(= (first s1) (first s2)) (recur (rest s1) (rest s2))
|
||||
:else false))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue