diff --git a/src/propeller/problems/PSB2/fizz_buzz.cljc b/src/propeller/problems/PSB2/fizz_buzz.cljc index 3397851..4b97416 100644 --- a/src/propeller/problems/PSB2/fizz_buzz.cljc +++ b/src/propeller/problems/PSB2/fizz_buzz.cljc @@ -6,7 +6,8 @@ [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] [propeller.tools.metrics :as metrics] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION ========================= ; FIZZ BUZZ from PSB2 diff --git a/src/propeller/problems/PSB2/gcd.cljc b/src/propeller/problems/PSB2/gcd.cljc index 079cfd3..25dedc8 100644 --- a/src/propeller/problems/PSB2/gcd.cljc +++ b/src/propeller/problems/PSB2/gcd.cljc @@ -6,7 +6,8 @@ [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] [propeller.tools.math :as math] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION =============================== ; GCD [GREATEST COMMON DIVISOR] from PSB2 diff --git a/src/propeller/problems/PSB2/luhn.cljc b/src/propeller/problems/PSB2/luhn.cljc index 9c2c6fe..cdfb175 100644 --- a/src/propeller/problems/PSB2/luhn.cljc +++ b/src/propeller/problems/PSB2/luhn.cljc @@ -6,7 +6,8 @@ [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] [propeller.tools.math :as math] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION ============================ ; LUHN from PSB2 diff --git a/src/propeller/problems/PSB2/paired_digits.cljc b/src/propeller/problems/PSB2/paired_digits.cljc index bcccf73..baa4e30 100644 --- a/src/propeller/problems/PSB2/paired_digits.cljc +++ b/src/propeller/problems/PSB2/paired_digits.cljc @@ -6,7 +6,8 @@ [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] [propeller.tools.math :as math] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION ============================= ; PAIRED DIGITS from PSB2 diff --git a/src/propeller/problems/PSB2/shopping_list.cljc b/src/propeller/problems/PSB2/shopping_list.cljc index e3120bd..dd26edc 100644 --- a/src/propeller/problems/PSB2/shopping_list.cljc +++ b/src/propeller/problems/PSB2/shopping_list.cljc @@ -6,7 +6,8 @@ [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] [propeller.tools.math :as math] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION =============================== ; DICE GAME from PSB2 diff --git a/src/propeller/problems/PSB2/snow_day.cljc b/src/propeller/problems/PSB2/snow_day.cljc index b68c886..a6f10fe 100644 --- a/src/propeller/problems/PSB2/snow_day.cljc +++ b/src/propeller/problems/PSB2/snow_day.cljc @@ -6,7 +6,8 @@ [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] [propeller.tools.math :as math] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION =============================== ; SNOW DAY from PSB2 diff --git a/src/propeller/problems/PSB2/solve_boolean.cljc b/src/propeller/problems/PSB2/solve_boolean.cljc index 42c29ea..432f8b2 100644 --- a/src/propeller/problems/PSB2/solve_boolean.cljc +++ b/src/propeller/problems/PSB2/solve_boolean.cljc @@ -5,7 +5,8 @@ [propeller.utils :as utils] [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION ================================ ; SOLVE BOOLEAN from PSB2 diff --git a/src/propeller/problems/PSB2/spin_words.cljc b/src/propeller/problems/PSB2/spin_words.cljc index c67328f..c991f95 100644 --- a/src/propeller/problems/PSB2/spin_words.cljc +++ b/src/propeller/problems/PSB2/spin_words.cljc @@ -6,7 +6,8 @@ [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] [propeller.tools.metrics :as metrics] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION ============================== ; SPIN WORDS from PSB2 diff --git a/src/propeller/problems/PSB2/square_digits.cljc b/src/propeller/problems/PSB2/square_digits.cljc index bb242d4..23a4304 100644 --- a/src/propeller/problems/PSB2/square_digits.cljc +++ b/src/propeller/problems/PSB2/square_digits.cljc @@ -6,7 +6,8 @@ [propeller.push.utils.helpers :refer [get-stack-instructions]] [propeller.push.state :as state] [propeller.tools.metrics :as metrics] - [propeller.gp :as gp])) + [propeller.gp :as gp] + #?(:cljs [cljs.reader :refer [read-string]]))) ; =========== PROBLEM DESCRIPTION ========================= ; SQUARE DIGITS from PSB2