Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tags #1086

Merged
merged 16 commits into from
Oct 10, 2024
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/biggest_square_sum.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(def level :elementary)

(def tags ["sicp"])
(def tags ["sicp" "math"])

(def description
{:en "Implement function that take three numbers and returns sum of squares of two biggest ones."
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/commands_sum.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(def level :easy)

(def tags ["collections"])
(def tags ["collections" "games"])

(def description
{:en "Several people are standing in a row and need to be divided into two teams.
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/count_and_say.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

(def level :hard)

(def tags ["strings"])
(def tags ["strings" "games"])

(def description
{:en "Conway's \"Look and Say\" sequence is a sequence of numbers in which each term \"reads aloud\" the digits of the previous term.
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/docker_builder.clj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
(s/join #"/" combined)))

(defn arguments-generator []
(let [languages ["elixir" "ruby" "haskell" "c++" "c#" "clojure" "dart" "go" "java" "js" "kotlin" "php" "python"]
(let [languages ["elixir" "ruby" "haskell" "c++" "c#" "clojure" "dart" "go" "java" "js" "kotlin" "php" "python" "rust" "typescript"]
versions (repeatedly 40 gen-version)
dirs (conj (repeatedly 30 gen-path) "")]
(gen/tuple (gen/elements languages)
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/even_array_square_sum.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(def level :elementary)

(def tags ["collections"])
(def tags ["collections" "math"])

(def description
{:en "Find the sum of the squares of all even numbers in the array."
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/fancy_number.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

(def level :easy)

(def tags ["strings"])
(def tags ["strings" "games"])

(def description
{:en "Given a number, find whether it is fancy or not.
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/farm_problem.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(def level :elementary)

(def tags ["training"])
(def tags ["training" "games"])

(def description
{:en "A farmer is asking you to tell him how many legs can be counted among all his animals.
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/find_nemo.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

(def level :elementary)

(def tags ["strings"])
(def tags ["strings" "games"])

(def description
{:en "You are given a string of words. You need to find the word `Nemo`, and return a string like this: \"I found Nemo at [the order of the word you find nemo]!\". If you can't find Nemo, return \"I can't find Nemo :(\"."
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/fizzbuzz.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(def level :elementary)

(def tags ["strings"])
(def tags ["strings" "games"])

(def description
{:en "If a number is divisible by 3, return \"Fizz\". If a number is divisible by 5, return \"Buzz\". If a number is divisible by 3 and 5, return \"FizzBuzz\". Otherwise, return an empty string."
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/four_is_magic.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

(def level :hard)

(def tags ["strings"])
(def tags ["strings" "games"])

(def description
{:en "Write a function that takes an integer number and returns an English text sequence starting with the English cardinal representation of that integer,
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/fridge_fun.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(def level :medium)

(def tags ["strings"])
(def tags ["strings" "games"])

(def disabled true)

Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/garden_help.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(def level :medium)

(def tags ["collections" "math"])
(def tags ["collections" "math" "games"])

(def description
{:en "Yaroslav helps his grandmother plant carrots in a single-line seedbed where a carrot can be planted at each
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/garland_word.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

(def level :easy)

(def tags ["strings"])
(def tags ["strings" "games"])

(def description
{:en "Write function that, given a lowercase word,
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/guess_score.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(def level :easy)

(def tags ["collections"])
(def tags ["collections" "games"])

(def description
{:en "Write a function that takes the assumed and real soccer match scores as the arguments and returns 2 if the score is correct, 1 if the winner is correct but the score is wrong and 0 if the winner is wrong."
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/imposter_search.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

(def level :easy)

(def tags ["collections" "strings"])
(def tags ["collections" "strings" "games"])

(def description
{:en "Create a function that find imposters in array of players, each player has its own role.
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/jackpot.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

(def level :elementary)

(def tags ["strings"])
(def tags ["strings" "games"])

(def description
{:en "Create a function that takes in an array (slot machine outcome) and returns true if all elements in the array are identical, and false otherwise. The array will contain 3 elements."
Expand Down
Loading