-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
95 lines (93 loc) · 1.74 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
pluginManagement {
val kotlinVersion: String by settings
plugins {
kotlin("jvm") version kotlinVersion
}
}
rootProject.name = "exercism-kotlin"
include(
"hello-world",
"rna-transcription",
"pangram",
"two-fer",
"hamming",
"raindrops",
"isogram",
"pig-latin",
"anagram",
"diamond",
"bob",
"beer-song",
"resistor-color",
"resistor-color-duo",
"acronym",
"reverse-string",
"dnd-character",
"gigasecond",
"luhn",
"scrabble-score",
"largest-series-product",
"phone-number",
"nucleotide-count",
"series",
"matrix",
"roman-numerals",
"isbn-verifier",
"armstrong-numbers",
"resistor-color-trio",
"transpose",
"difference-of-squares",
"leap",
"secret-handshake",
"space-age",
"allergies",
"meetup",
"custom-set",
"triangle",
"saddle-points",
"darts",
"flatten-array",
"minesweeper",
"word-count",
"crypto-square",
"robot-name",
"dominoes",
"rotational-cipher",
"wordy",
"run-length-encoding",
"bank-account",
"scale-generator",
"linked-list",
"perfect-numbers",
"sum-of-multiples",
"sieve",
"yacht",
"binary-search",
"grains",
"robot-simulator",
"forth",
"collatz-conjecture",
"nth-prime",
"prime-factors",
"pascals-triangle",
"complex-numbers",
"kindergarten-garden",
"all-your-base",
"clock",
"spiral-matrix",
"matching-brackets",
"change",
"etl",
"grade-school",
"binary-search-tree",
"atbash-cipher",
"say",
"simple-cipher",
"rail-fence-cipher",
"affine-cipher",
"sublist",
"list-ops",
"diffie-hellman",
"react",
"zebra-puzzle"
)