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

Update tags #1055

Merged
merged 1 commit into from
Oct 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -5,7 +5,7 @@

(def level :easy)

(def tags ["strings" "devops" "codebattle"])
(def tags ["strings" "codebattle"])

(def description
{:en "Create a function, that create docker build command from `language`, `version` and `path` (which can be empty string) for codebattle."
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/sort_elements_by_frequency.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

(def level :easy)

(def tags ["collections" "sorting"])
(def tags ["collections" "sorting" "algorithms"])

(def description
{:en "Given an array of integers, sort the array according to frequency of elements.
Expand Down
2 changes: 1 addition & 1 deletion src/battle_asserts/issues/zigzag_conversion.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

(def disabled true)

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

(def description
{:en "The string \"PAYPALISHIRING\" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)
Expand Down
Loading