Skip to content

Commit bb9db59

Browse files
authored
Add tags (#1098)
* Add tags * Update two_trains_meet.clj * Update vowels_to_numbers.clj
1 parent f727408 commit bb9db59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/battle_asserts/issues/title_string.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
(def level :elementary)
77

8-
(def tags ["collections" "strings"])
8+
(def tags ["collections" "strings" "training"])
99

1010
(def description
1111
{:en "Check if a string `title` is a title string or not. A title string is one which has all the words in the string start with an upper case letter."

src/battle_asserts/issues/two_trains_meet.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
(def level :elementary)
66

7-
(def tags ["physics"])
7+
(def tags ["physics" "training"])
88

99
(def description
1010
{:en "Compute how long after their deparature two trains will meet. Assume that the trains travel between two points, along a single section of track, going in opposite directions. The function should consume the trains' speeds and the starting distance between the trains."

src/battle_asserts/issues/vowels_to_numbers.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
(def level :elementary)
77

8-
(def tags ["strings"])
8+
(def tags ["strings" "training"])
99

1010
(def description
1111
{:en "In a given word array, replace the vowels in each word with their indexes.

0 commit comments

Comments
 (0)