CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 09:28:42 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=98a99bc2ffc6a28abd32c6552130d17391bd6a6eeb6bacf1dfbcdda1dafdc4f3a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%224z8Vj4AnLXWLTa__j3633dNSUoN-4vCK%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cd54310bebd3d4-BLR
dfs - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (declare helper)
- (defn- dfs [graph start end n acc]
- (if (= n end) (conj acc end)
- (let [ns (seq (disj (get graph n) (peek acc)))]
- (if (empty? ns)
- nil
- (helper graph start end ns (conj acc n))))))
- (defn- helper [graph start end ns acc]
- (if (empty? ns)
- nil
- (let [p (dfs graph start end (first ns) acc)]
- (if p
- p
- (recur graph start end (rest ns) acc)))))
- (defn findpath [graph start goal]
- (dfs graph start goal start []))
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Jack's Profit Method ✅ NEVER SEEN BEF...
JavaScript | 1 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ D
JavaScript | 7 sec ago | 0.24 KB
-
⭐✅ Online Marketplace Exploit ✅ NEVER SEEN BE...
JavaScript | 18 sec ago | 0.24 KB
-
⭐⭐Exchange Exploit⭐⭐ 4
JavaScript | 21 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ L
JavaScript | 22 sec ago | 0.24 KB
-
⭐✅ Trading Profit Method ✅ NEVER SEEN BEFORE...
JavaScript | 27 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ 8
JavaScript | 32 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ 1
JavaScript | 34 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand