diff --git a/config.json b/config.json index 10ef35b3e..5e5cf23a9 100644 --- a/config.json +++ b/config.json @@ -22,7 +22,6 @@ "roman-numerals", "all-your-base", "grade-school", - "tournament", "robot-simulator", "bracket-push", "queen-attack", @@ -32,6 +31,7 @@ "variable-length-quantity", "phone-number", "wordy", + "tournament", "custom-set", "anagram", "nucleotide-codons", diff --git a/problems.md b/problems.md index 10300f88f..51126fae6 100644 --- a/problems.md +++ b/problems.md @@ -41,7 +41,6 @@ rna-transcription | match, struct, str vs string roman-numerals | mutable, results, loops, struct, traits all-your-base | Result, enumerate, fold, map grade-school | struct, entry api, Vec, Option -tournament | enum, sorting, hashmap, structs robot-simulator | Immutability, enum bracket-push | From trait, stack or recursion queen-attack | struct, trait (optional), Result @@ -51,6 +50,7 @@ allergies | struct, enum, bitwise (probably), vectors, filter variable-length-quantity | Encodings, slices, bitwise, Result phone-number | option, format, unwrap_or, iters, match wordy | Result, string parsing, operators (optional) +tournament | enum, sorting, hashmap, structs custom-set | generic over type, vector, equality, struct ## Rust Gets Strange