code-reviews

zendevil 2021-05-14T12:31:01.044300Z

https://prit.substack.com/p/hackerrank

djm 2021-05-14T12:53:11.044500Z

Seems like a strange problem - it's not so much looking for substrings as checking if they contain any common characters. So, why not just (if (empty? (clojure.set/intersection (set s1) (set s2))) "NO" "YES") ?