Skip to content

Commit 6390163

Browse files
committedAug 26, 2021
Fix links to 4clojure problem sets. The OG site was
discontinued by the OG maintainers, after a decade of keeping the lights on! It has been re-hosted by @oxalorg and @lambdaisland, at https://4clojure.oxal.org Ref: [ANN] Discontinuing 4clojure.com https://groups.google.com/g/clojure/c/ZWmDEzvn-Js
1 parent 0cc34c3 commit 6390163

6 files changed

+7
-7
lines changed
 

‎src/clojure_by_example/ex00_introduction.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -253,5 +253,5 @@ same ; is defined in the current ns
253253
;;
254254
;; - With the knowledge you have so far, you can try solving these
255255
;; problems at 4clojure.com: 1 to 13, and 16, 47, 126, 161, and 162
256-
;; e.g. http://www.4clojure.com/problem/1
257-
;; e.g. http://www.4clojure.com/problem/16
256+
;; e.g. https://4clojure.oxal.org/#/problem/1
257+
;; e.g. https://4clojure.oxal.org/#/problem/16

‎src/clojure_by_example/ex01_fundamentally_functional.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,6 @@ reduce
489489
;; that 4clojure requires.
490490
;;
491491
(comment
492-
(map (fn [problem-no] (str "http://www.4clojure.com/problem/"
492+
(map (fn [problem-no] (str "https://4clojure.oxal.org/#/problem/"
493493
problem-no))
494494
[14, 15, 19, 20, 48, 45]))

‎src/clojure_by_example/ex02_domain_as_data.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@
245245
;; that 4clojure requires.
246246
;;
247247
(comment
248-
(map (fn [problem-no] (str "http://www.4clojure.com/problem/"
248+
(map (fn [problem-no] (str "https://4clojure.oxal.org/#/problem/"
249249
problem-no))
250250
[17, 18, 57, 71
251251
134, 27, 26, 39]))

‎src/clojure_by_example/ex03_data_and_functions.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ p/target-planets
437437
;; without code-golfing or hacks. Then translate to anonymous function form
438438
;; that 4clojure requires.
439439
(comment
440-
(map (fn [problem-no] (str "http://www.4clojure.com/problem/"
440+
(map (fn [problem-no] (str "https://4clojure.oxal.org/#/problem/"
441441
problem-no))
442442
[37, 64, 72, 21, 24, 25,
443443
38, 29, 42, 31, 81, 107,

‎src/clojure_by_example/ex04_api_design.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
;; that 4clojure requires.
322322
;;
323323
(comment
324-
(map (fn [problem-no] (str "http://www.4clojure.com/problem/"
324+
(map (fn [problem-no] (str "https://4clojure.oxal.org/#/problem/"
325325
problem-no))
326326
[35, 36, 68, 145, 52,
327327
156, 22, 23, 32, 30,

‎src/clojure_by_example/ex05_immutability_and_fp.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,6 @@ other-pi ; what should this be?
276276
;; that 4clojure requires.
277277
;;
278278
(comment
279-
(map (fn [problem-no] (str "http://www.4clojure.com/problem/"
279+
(map (fn [problem-no] (str "https://4clojure.oxal.org/#/problem/"
280280
problem-no))
281281
[51, 77, 60, 102, 86, 115]))

0 commit comments

Comments
 (0)