From d47d8c949581d1193a18a9cd0f9fda883e129abd Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Mon, 27 Nov 2023 21:52:07 +0000 Subject: [PATCH 01/16] About section and instructions updated --- concepts/maps/.meta/config.json | 7 ++ concepts/maps/about.md | 65 +++++++++++++ concepts/maps/introduction.md | 0 concepts/maps/links.json | 0 config.json | 49 +++++++--- .../concept/arcade-high-score/.docs/hints.md | 0 .../arcade-high-score/.docs/instructions.md | 97 +++++++++++++++++++ .../arcade-high-score/.docs/introduction.md | 0 .../.docs/introduction.md.tpl | 0 .../arcade-high-score/.meta/config.json | 0 .../concept/arcade-high-score/.meta/design.md | 0 .../src/reference/java/ArcadeHighScore.java | 2 + .../concept/arcade-high-score/build.gradle | 19 ++++ .../src/main/java/ArcadeHighScore.java | 2 + .../src/test/java/ArcadeHighScoreTest.java | 2 + exercises/settings.gradle | 5 + 16 files changed, 234 insertions(+), 14 deletions(-) create mode 100644 concepts/maps/.meta/config.json create mode 100644 concepts/maps/about.md create mode 100644 concepts/maps/introduction.md create mode 100644 concepts/maps/links.json create mode 100644 exercises/concept/arcade-high-score/.docs/hints.md create mode 100644 exercises/concept/arcade-high-score/.docs/instructions.md create mode 100644 exercises/concept/arcade-high-score/.docs/introduction.md create mode 100644 exercises/concept/arcade-high-score/.docs/introduction.md.tpl create mode 100644 exercises/concept/arcade-high-score/.meta/config.json create mode 100644 exercises/concept/arcade-high-score/.meta/design.md create mode 100644 exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java create mode 100644 exercises/concept/arcade-high-score/build.gradle create mode 100644 exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java create mode 100644 exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java diff --git a/concepts/maps/.meta/config.json b/concepts/maps/.meta/config.json new file mode 100644 index 000000000..d18545d3f --- /dev/null +++ b/concepts/maps/.meta/config.json @@ -0,0 +1,7 @@ +{ + "blurb": "Maps are a data structure that holds key-value pairs. Keys and values can be of any data type, and the keys must be unique.", + "authors": [ + "smcg468" + ], + "contributors": [] +} diff --git a/concepts/maps/about.md b/concepts/maps/about.md new file mode 100644 index 000000000..b979a9248 --- /dev/null +++ b/concepts/maps/about.md @@ -0,0 +1,65 @@ +# About + +[Maps][maps] in Java is an interface that holds data in key-value pairs. + +- Keys can be of any type, but must be unique. +- Values can be of any type, they do not have to be unique. + +The Map interface provides three collection views that can all be accessed individually + +- set of keys, + +```java +Map hashmap = new HashMap(); + +// Generates a set view of the keys in the hashmap +hashmap.keySet(); +``` + +- collection of values + +```java +Map hashmap = new HashMap(); + +// Generates a set view of the values in the hashmap +hashmap.values(); +``` + +- set of key-value mappings. + +````java +Map hashmap = new HashMap(); + +for (String key: map.keySet()) { + System.out.println("key : " + key); + System.out.println("value : " + map.get(key)); +} +```` + +Due to Map being an interface, we must create an object of a class that extends the map interface rather than creating an object of type Map. + +```java +Map hashmap = new HashMap(); +``` + +The first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. + +There are two map interfaces in Java, Map and [SortedMap][sorted-map] which extends the Map interface. +The main difference in Map and SortedMap is that the elements in a SortedMap are in sorted order. + +We also then have three classes which extend the Map interface, these are [HashMap][hash-map], [LinkedHashMap][linked-hash-map] and [TreeMap][tree-map]. + +Hashmap + +LinkedHashMap + +Treemap + + + +[maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html +[start-of-map-methods]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- +[sorted-map]: https://docs.oracle.com/javase/8/docs/api/java/util/SortedMap.html +[hash-map]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html +[linked-hash-map]: https://docs.oracle.com/javase/8/docs/api/java/util/LinkedHashMap.html +[tree-map]: https://docs.oracle.com/javase/8/docs/api/java/util/TreeMap.html \ No newline at end of file diff --git a/concepts/maps/introduction.md b/concepts/maps/introduction.md new file mode 100644 index 000000000..e69de29bb diff --git a/concepts/maps/links.json b/concepts/maps/links.json new file mode 100644 index 000000000..e69de29bb diff --git a/config.json b/config.json index 49c323d26..c779b6a81 100644 --- a/config.json +++ b/config.json @@ -402,12 +402,14 @@ "name": "Word Count", "uuid": "3603b770-87a5-4758-91f3-b4d1f9075bc1", "practices": [ - "strings" + "strings", + "maps" ], "prerequisites": [ "for-loops", "arrays", - "classes" + "classes", + "maps" ], "difficulty": 5 }, @@ -796,12 +798,14 @@ "name": "Nucleotide Count", "uuid": "2d80fdfc-5bd7-4b67-9fbe-8ab820d89051", "practices": [ - "strings" + "strings", + "maps" ], "prerequisites": [ "if-else-statements", "for-loops", - "classes" + "classes", + "maps" ], "difficulty": 5 }, @@ -953,10 +957,12 @@ "practices": [ "if-else-statements", "for-loops", - "enums" + "enums", + "maps" ], "prerequisites": [ - "enums" + "enums", + "maps" ], "difficulty": 7 }, @@ -991,8 +997,12 @@ "slug": "word-search", "name": "Word Search", "uuid": "b53bde52-cb5f-4d43-86ec-18aa509d62f9", - "practices": [], - "prerequisites": [], + "practices": [ + "maps" + ], + "prerequisites": [ + "maps" + ], "difficulty": 7, "topics": [ "games", @@ -1471,8 +1481,12 @@ "slug": "palindrome-products", "name": "Palindrome Products", "uuid": "873c05de-b5f5-4c5b-97f0-d1ede8a82832", - "practices": [], - "prerequisites": [], + "practices": [ + "maps" + ], + "prerequisites": [ + "maps" + ], "difficulty": 8, "topics": [ "if-else-statements", @@ -1640,8 +1654,12 @@ "slug": "parallel-letter-frequency", "name": "Parallel Letter Frequency", "uuid": "38a405e8-619d-400f-b53c-2f06461fdf9d", - "practices": [], - "prerequisites": [], + "practices": [ + "maps" + ], + "prerequisites": [ + "maps" + ], "difficulty": 6, "topics": [ "concurrency", @@ -1929,13 +1947,16 @@ "slug": "sgf-parsing", "name": "SGF Parsing", "uuid": "0d6325d1-c0a3-456e-9a92-cea0559e82ed", - "practices": [], + "practices": [ + "maps" + ], "prerequisites": [ "strings", "chars", "if-else-statements", "lists", - "for-loops" + "for-loops", + "maps" ], "difficulty": 7 }, diff --git a/exercises/concept/arcade-high-score/.docs/hints.md b/exercises/concept/arcade-high-score/.docs/hints.md new file mode 100644 index 000000000..e69de29bb diff --git a/exercises/concept/arcade-high-score/.docs/instructions.md b/exercises/concept/arcade-high-score/.docs/instructions.md new file mode 100644 index 000000000..bf21c384c --- /dev/null +++ b/exercises/concept/arcade-high-score/.docs/instructions.md @@ -0,0 +1,97 @@ +# Instructions + +In this exercise, you're implementing a way to keep track of the high scores for the most popular game in your local arcade hall. + +## 1. Define a new high score map + +To make a new high score map, create an empty hashmap object with keys of type String and values of type Integer. + +```java +Map highScore = new HashMap(); +``` + +## 2. Add players to the high score map + +To add a player to the high score map, define `highScore.put()`, which is a function which takes 2 arguments: + +- The first argument is name as a String. +- The second argument is the score as an Integer. + +````java +Map highScore = new HashMap<>(); + +// {Key: "Dave Thomas", Value: 0} +highScore.put("Dave Thomas", 0); + +// {Key: "José Valim", Value: 0} +highScore.put("José Valim", 0); +```` + +## 3. Remove players from the score map + +To remove a player from the high score map, use the `highScore.remove()` method, which takes 1 argument: + +- The argument is the key of the item, in this case the name of the player. + +````java +Map highScore = new HashMap<>(); +// Adding the player to the highScore Map +highScore.put("Dave Thomas", 0); + +//Removing the player +highScore.remove("Dave Thomas"); +```` + +## 4. Reset a player's score + +To reset a player's score, define `HighScore.reset_score/2`, which takes 2 arguments: + +- The first argument is the map of scores. +- The second argument is the name of the player as a string, whose score you wish to reset. + +The function should also work if the player doesn't have a score. + +```elixir +score_map = HighScore.new() +# => %{} +score_map = HighScore.add_player(score_map, "José Valim", 486_373) +# => %{"José Valim"=> 486_373} +score_map = HighScore.reset_score(score_map, "José Valim") +# => %{"José Valim"=> 0} +``` + +## 5. Update a player's score + +To update a player's score by adding to the previous score, define `HighScore.update_score/3`, which takes 3 arguments: + +- The first argument is the map of scores. +- The second argument is the name of the player as a string, whose score you wish to update. +- The third argument is the score that you wish to **add** to the stored high score. + +The function should also work if the player doesn't have a previous score - assume the previous score is 0. + +```elixir +score_map = HighScore.new() +# => %{} +score_map = HighScore.add_player(score_map, "José Valim", 486_373) +# => %{"José Valim"=> 486_373} +score_map = HighScore.update_score(score_map, "José Valim", 5) +# => %{"José Valim"=> 486_378} +``` + +## 6. Get a list of players + +To get a list of players, define `HighScore.get_players/1`, which takes 1 argument: + +- The first argument is the map of scores. + +```elixir +score_map = HighScore.new() +# => %{} +score_map = HighScore.add_player(score_map, "Dave Thomas", 2_374) +# => %{"Dave Thomas" => 2_374} +score_map = HighScore.add_player(score_map, "José Valim", 486_373) +# => %{"Dave Thomas" => 2_374, "José Valim"=> 486_373} +HighScore.get_players(score_map) +# => ["Dave Thomas", "José Valim"] +``` \ No newline at end of file diff --git a/exercises/concept/arcade-high-score/.docs/introduction.md b/exercises/concept/arcade-high-score/.docs/introduction.md new file mode 100644 index 000000000..e69de29bb diff --git a/exercises/concept/arcade-high-score/.docs/introduction.md.tpl b/exercises/concept/arcade-high-score/.docs/introduction.md.tpl new file mode 100644 index 000000000..e69de29bb diff --git a/exercises/concept/arcade-high-score/.meta/config.json b/exercises/concept/arcade-high-score/.meta/config.json new file mode 100644 index 000000000..e69de29bb diff --git a/exercises/concept/arcade-high-score/.meta/design.md b/exercises/concept/arcade-high-score/.meta/design.md new file mode 100644 index 000000000..e69de29bb diff --git a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java new file mode 100644 index 000000000..b7f7fdfef --- /dev/null +++ b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java @@ -0,0 +1,2 @@ +public class ArcadeHighScore { +} diff --git a/exercises/concept/arcade-high-score/build.gradle b/exercises/concept/arcade-high-score/build.gradle new file mode 100644 index 000000000..8a5151554 --- /dev/null +++ b/exercises/concept/arcade-high-score/build.gradle @@ -0,0 +1,19 @@ +plugins { + id 'java' +} + +group 'org.example' +version 'unspecified' + +repositories { + mavenCentral() +} + +dependencies { + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1' +} + +test { + useJUnitPlatform() +} \ No newline at end of file diff --git a/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java new file mode 100644 index 000000000..b7f7fdfef --- /dev/null +++ b/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java @@ -0,0 +1,2 @@ +public class ArcadeHighScore { +} diff --git a/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java new file mode 100644 index 000000000..03ef40844 --- /dev/null +++ b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java @@ -0,0 +1,2 @@ +public class ArcadeHighScoreTest { +} diff --git a/exercises/settings.gradle b/exercises/settings.gradle index 2c541552e..c0115c6bd 100644 --- a/exercises/settings.gradle +++ b/exercises/settings.gradle @@ -150,3 +150,8 @@ include 'practice:wordy' include 'practice:yacht' include 'practice:zebra-puzzle' include 'practice:zipper' +include 'concept:arcade-high-score' +findProject(':concept:arcade-high-score')?.name = 'arcade-high-score' +include 'concept:arcade-high-score' +findProject(':concept:arcade-high-score')?.name = 'arcade-high-score' + From b97f2f7771a8014c04f7888e340e4057a5a90762 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Wed, 29 Nov 2023 19:31:51 +0000 Subject: [PATCH 02/16] instructions updated and hints added --- concepts/maps/about.md | 26 ++-- .../concept/arcade-high-score/.docs/hints.md | 0 .../arcade-high-score/.docs/instructions.md | 97 --------------- .../concept/arcade-high-score/.meta/design.md | 0 .../src/reference/java/ArcadeHighScore.java | 2 - .../src/main/java/ArcadeHighScore.java | 2 - .../concept/arcade-scores/.docs/hints.md | 36 ++++++ .../arcade-scores/.docs/instructions.md | 116 ++++++++++++++++++ .../.docs/introduction.md | 0 .../.docs/introduction.md.tpl | 0 .../.meta/config.json | 0 .../concept/arcade-scores/.meta/design.md | 34 +++++ .../src/reference/java/ArcadeHighScore.java | 34 +++++ .../build.gradle | 0 .../src/main/java/ArcadeHighScore.java | 26 ++++ .../src/test/java/ArcadeHighScoreTest.java | 0 16 files changed, 263 insertions(+), 110 deletions(-) delete mode 100644 exercises/concept/arcade-high-score/.docs/hints.md delete mode 100644 exercises/concept/arcade-high-score/.docs/instructions.md delete mode 100644 exercises/concept/arcade-high-score/.meta/design.md delete mode 100644 exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java delete mode 100644 exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java create mode 100644 exercises/concept/arcade-scores/.docs/hints.md create mode 100644 exercises/concept/arcade-scores/.docs/instructions.md rename exercises/concept/{arcade-high-score => arcade-scores}/.docs/introduction.md (100%) rename exercises/concept/{arcade-high-score => arcade-scores}/.docs/introduction.md.tpl (100%) rename exercises/concept/{arcade-high-score => arcade-scores}/.meta/config.json (100%) create mode 100644 exercises/concept/arcade-scores/.meta/design.md create mode 100644 exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java rename exercises/concept/{arcade-high-score => arcade-scores}/build.gradle (100%) create mode 100644 exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java rename exercises/concept/{arcade-high-score => arcade-scores}/src/test/java/ArcadeHighScoreTest.java (100%) diff --git a/concepts/maps/about.md b/concepts/maps/about.md index b979a9248..4e1bc68d9 100644 --- a/concepts/maps/about.md +++ b/concepts/maps/about.md @@ -2,8 +2,8 @@ [Maps][maps] in Java is an interface that holds data in key-value pairs. -- Keys can be of any type, but must be unique. -- Values can be of any type, they do not have to be unique. +- Keys can be of any [reference type][reference-data-types], but must be unique. +- Values can be of any reference type, they do not have to be unique. The Map interface provides three collection views that can all be accessed individually @@ -31,12 +31,12 @@ hashmap.values(); Map hashmap = new HashMap(); for (String key: map.keySet()) { - System.out.println("key : " + key); - System.out.println("value : " + map.get(key)); + System.out.println("Key = " + key); + System.out.println("Value = " + map.get(key)); } ```` -Due to Map being an interface, we must create an object of a class that extends the map interface rather than creating an object of type Map. +Due to Map being an interface, we must create an object of a class that implements the map interface. ```java Map hashmap = new HashMap(); @@ -44,20 +44,28 @@ Map hashmap = new HashMap(); The first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. +## SortedMap + There are two map interfaces in Java, Map and [SortedMap][sorted-map] which extends the Map interface. The main difference in Map and SortedMap is that the elements in a SortedMap are in sorted order. +The sorting order of the elements in a SortedMap are by the natural order of the keys, or by a specified comparator. + +## Classes that implement Map + +We then have three classes which implement the Map interface, these are [HashMap][hash-map], [LinkedHashMap][linked-hash-map] and [TreeMap][tree-map]. + +### Hashmap -We also then have three classes which extend the Map interface, these are [HashMap][hash-map], [LinkedHashMap][linked-hash-map] and [TreeMap][tree-map]. -Hashmap -LinkedHashMap +### LinkedHashMap -Treemap +### Treemap [maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html +[reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 [start-of-map-methods]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- [sorted-map]: https://docs.oracle.com/javase/8/docs/api/java/util/SortedMap.html [hash-map]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html diff --git a/exercises/concept/arcade-high-score/.docs/hints.md b/exercises/concept/arcade-high-score/.docs/hints.md deleted file mode 100644 index e69de29bb..000000000 diff --git a/exercises/concept/arcade-high-score/.docs/instructions.md b/exercises/concept/arcade-high-score/.docs/instructions.md deleted file mode 100644 index bf21c384c..000000000 --- a/exercises/concept/arcade-high-score/.docs/instructions.md +++ /dev/null @@ -1,97 +0,0 @@ -# Instructions - -In this exercise, you're implementing a way to keep track of the high scores for the most popular game in your local arcade hall. - -## 1. Define a new high score map - -To make a new high score map, create an empty hashmap object with keys of type String and values of type Integer. - -```java -Map highScore = new HashMap(); -``` - -## 2. Add players to the high score map - -To add a player to the high score map, define `highScore.put()`, which is a function which takes 2 arguments: - -- The first argument is name as a String. -- The second argument is the score as an Integer. - -````java -Map highScore = new HashMap<>(); - -// {Key: "Dave Thomas", Value: 0} -highScore.put("Dave Thomas", 0); - -// {Key: "José Valim", Value: 0} -highScore.put("José Valim", 0); -```` - -## 3. Remove players from the score map - -To remove a player from the high score map, use the `highScore.remove()` method, which takes 1 argument: - -- The argument is the key of the item, in this case the name of the player. - -````java -Map highScore = new HashMap<>(); -// Adding the player to the highScore Map -highScore.put("Dave Thomas", 0); - -//Removing the player -highScore.remove("Dave Thomas"); -```` - -## 4. Reset a player's score - -To reset a player's score, define `HighScore.reset_score/2`, which takes 2 arguments: - -- The first argument is the map of scores. -- The second argument is the name of the player as a string, whose score you wish to reset. - -The function should also work if the player doesn't have a score. - -```elixir -score_map = HighScore.new() -# => %{} -score_map = HighScore.add_player(score_map, "José Valim", 486_373) -# => %{"José Valim"=> 486_373} -score_map = HighScore.reset_score(score_map, "José Valim") -# => %{"José Valim"=> 0} -``` - -## 5. Update a player's score - -To update a player's score by adding to the previous score, define `HighScore.update_score/3`, which takes 3 arguments: - -- The first argument is the map of scores. -- The second argument is the name of the player as a string, whose score you wish to update. -- The third argument is the score that you wish to **add** to the stored high score. - -The function should also work if the player doesn't have a previous score - assume the previous score is 0. - -```elixir -score_map = HighScore.new() -# => %{} -score_map = HighScore.add_player(score_map, "José Valim", 486_373) -# => %{"José Valim"=> 486_373} -score_map = HighScore.update_score(score_map, "José Valim", 5) -# => %{"José Valim"=> 486_378} -``` - -## 6. Get a list of players - -To get a list of players, define `HighScore.get_players/1`, which takes 1 argument: - -- The first argument is the map of scores. - -```elixir -score_map = HighScore.new() -# => %{} -score_map = HighScore.add_player(score_map, "Dave Thomas", 2_374) -# => %{"Dave Thomas" => 2_374} -score_map = HighScore.add_player(score_map, "José Valim", 486_373) -# => %{"Dave Thomas" => 2_374, "José Valim"=> 486_373} -HighScore.get_players(score_map) -# => ["Dave Thomas", "José Valim"] -``` \ No newline at end of file diff --git a/exercises/concept/arcade-high-score/.meta/design.md b/exercises/concept/arcade-high-score/.meta/design.md deleted file mode 100644 index e69de29bb..000000000 diff --git a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java deleted file mode 100644 index b7f7fdfef..000000000 --- a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java +++ /dev/null @@ -1,2 +0,0 @@ -public class ArcadeHighScore { -} diff --git a/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java deleted file mode 100644 index b7f7fdfef..000000000 --- a/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java +++ /dev/null @@ -1,2 +0,0 @@ -public class ArcadeHighScore { -} diff --git a/exercises/concept/arcade-scores/.docs/hints.md b/exercises/concept/arcade-scores/.docs/hints.md new file mode 100644 index 000000000..a710dac96 --- /dev/null +++ b/exercises/concept/arcade-scores/.docs/hints.md @@ -0,0 +1,36 @@ +# Hints + +## General + +- A [map][maps] is an associative data structure of key-value pairs. + +## 1. Define a new high score map + +- It should return an empty [map][maps]. +- [Map module][map-module] functions or literal forms can be useful. + +## 2. Add players to the high score map + +- The resulting map should be returned. +- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-put] puts a value in a map under a given key. + +## 3. Remove players from the score map + +- The resulting map should be returned. +- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-delete] deletes a key from a map. + +## 4. Reset a player's score + +- The resulting map should be returned with the player's score reset to an initial value of 0. +- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-put] puts a value in a map under a given key. + +## 5. Update a player's score + +- The resulting map should be returned with the player's updated score. +- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-update] updates a value in a map under a given key. + +## 6. Get a list of players + +- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-keys] returns a list of all keys in a map. + +[maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html \ No newline at end of file diff --git a/exercises/concept/arcade-scores/.docs/instructions.md b/exercises/concept/arcade-scores/.docs/instructions.md new file mode 100644 index 000000000..e2f5dd9f3 --- /dev/null +++ b/exercises/concept/arcade-scores/.docs/instructions.md @@ -0,0 +1,116 @@ +# Instructions + +In this exercise, you're implementing a way to keep track of the high scores for the most popular game in your local arcade hall. + +## 1. Define a new high score map + +To make a new high score map, create an empty hashmap object with keys of type String and values of type Integer. + +```java +Map highScores = new HashMap<>(); +``` + +## 2. Add players to the high score map + +To add a player to the high score map, define `highScores.addPlayer()`, which is a function which takes 2 arguments: + +- The first argument is the players name as a String. +- The second argument is the players score as an Integer. + +````java +Map highScores = new HashMap<>(); + +// {Dave Thomas=78} +highScores.put("Dave Thomas", 0); + +// {José Valim=81} +highScores.put("José Valim", 0); +```` + +## 3. Remove players from the score map + +To remove a player from the high score map, define the `highScores.removePlayer()` method, which takes 1 argument: + +- The argument is the key of the item, in this case the name of the player. + +````java +Map highScores = new HashMap<>(); +// Adding the player to the highScores HashMap +highScores.put("Dave Thomas", 0); + +//Removing the player +highScores.remove("Dave Thomas"); +```` + +## 4. Reset a player's score + +To reset a player's score, use the `highScores.resetScore()` method, which takes 2 arguments: + +- The first argument is the players name. +- The second argument is the new score for the player, in this case 0. + +The function should also work if the player doesn't have a score. + +```java +Map highScores = new HashMap<>(); +// Resetting Daves score to 0 +highScores.put("Dave Thomas", 0); +``` + +## 5. Update a player's score + +To update a player's score by adding to the previous score, define `highScore.update_score/3`, which takes 3 arguments: + +- The first argument is the map of scores. +- The second argument is the name of the player as a string, whose score you wish to update. +- The third argument is the score that you wish to **add** to the stored high score. + +The function should also work if the player doesn't have a previous score - assume the previous score is 0. + +```java +Map highScores = new HashMap<>(); +// Add players score to the highScores map +highScores.put("Dave Thomas", 19); + +// Save t +Integer oldScore = highScores.get("Dave Thomas"); + +highScores.put("Dave Thomas", oldScore + score); + + +``` + +## 6. Get a list of players + +To get a list of players, reference the `highScores` object by printing it: + +````java +Map highScores = new HashMap<>(); + +// Key: "Dave Thomas", Value: 78 +highScores.put("Dave Thomas", 78); + +// Key: "José Valim", Value: 81 +highScores.put("José Valim", 81); + +// Print the highScore HashMap +// Returns {Dave Thomas=78, José Valim=81} +System.out.println(highScores); +```` + +Or we can simply return highScores: + +````java +Map highScores = new HashMap<>(); + +// Key: "Dave Thomas", Value: 78 +highScores.put("Dave Thomas", 78); + +// Key: "José Valim", Value: 81 +highScores.put("José Valim", 81); + +Map listOfPlayers(){ + // Returns {Dave Thomas=78, José Valim=81} + return highscores; +} +```` \ No newline at end of file diff --git a/exercises/concept/arcade-high-score/.docs/introduction.md b/exercises/concept/arcade-scores/.docs/introduction.md similarity index 100% rename from exercises/concept/arcade-high-score/.docs/introduction.md rename to exercises/concept/arcade-scores/.docs/introduction.md diff --git a/exercises/concept/arcade-high-score/.docs/introduction.md.tpl b/exercises/concept/arcade-scores/.docs/introduction.md.tpl similarity index 100% rename from exercises/concept/arcade-high-score/.docs/introduction.md.tpl rename to exercises/concept/arcade-scores/.docs/introduction.md.tpl diff --git a/exercises/concept/arcade-high-score/.meta/config.json b/exercises/concept/arcade-scores/.meta/config.json similarity index 100% rename from exercises/concept/arcade-high-score/.meta/config.json rename to exercises/concept/arcade-scores/.meta/config.json diff --git a/exercises/concept/arcade-scores/.meta/design.md b/exercises/concept/arcade-scores/.meta/design.md new file mode 100644 index 000000000..7047b9a46 --- /dev/null +++ b/exercises/concept/arcade-scores/.meta/design.md @@ -0,0 +1,34 @@ +# Design + +## Learning objectives + +- Know what a map is. +- Know how to define a map literal. +- Know how to add key/value pairs in a map. +- Know how to get values from a map. +- Know how to get keys from a map. +- Know how to update values in a map. +- Know how to remove items from a map. +- Know how to retrieve all items in a map. +- Know the difference in `Map` and `SortedMap` interfaces. +- Know what a `HashMap` is. +- Know what a `LinkedHashMap` is. +- Know what a `TreeMap` is. + +## Out of scope + +- `AbstractMap` +- `IdentityHashMap` +- `WeakHashMap` +- `EnumMap` +- `ConcurrentHashMap` +- `ConcurrentSkipListMap` + +## Concepts + +- `maps` + +## Prerequisites + +- `String`: strings will be the key in our map. +- `Integer`: Integers will be the value in our map. \ No newline at end of file diff --git a/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java new file mode 100644 index 000000000..8e6afb627 --- /dev/null +++ b/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java @@ -0,0 +1,34 @@ +import java.util.HashMap; +import java.util.Map; + +public class ArcadeHighScore { + + Map highScores = new HashMap<>(); + + Map addPlayer (String name, Integer score) { + highScores.put(name, score); + return highScores; + } + + Map removePlayer (String name) { + highScores.remove(name); + return highScores; + } + + Map resetScore (String name) { + highScores.put(name, 0); + return highScores; + } + + Map updateScore (String name, Integer score) { + + Integer oldScore = highScores.getOrDefault(name, 0); + + highScores.put(name, oldScore + score); + return highScores; + } + + Map listOfPlayers (HashMap highScores) { + return highScores; + } +} diff --git a/exercises/concept/arcade-high-score/build.gradle b/exercises/concept/arcade-scores/build.gradle similarity index 100% rename from exercises/concept/arcade-high-score/build.gradle rename to exercises/concept/arcade-scores/build.gradle diff --git a/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java b/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java new file mode 100644 index 000000000..dde205a23 --- /dev/null +++ b/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java @@ -0,0 +1,26 @@ +import java.util.HashMap; +import java.util.Map; + +public class ArcadeHighScore { + + Map addPlayer (String name, Integer score) { + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.addPlayer(highScores) method"); + } + + Map removePlayer (String name) { + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.removePlayer(highScores) method"); + } + + Map resetScore (String name) { + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.resetScore(highScores) method"); + } + + Map updateScore (String name) { + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.updateScore(highScores) method"); + } + + Map listOfPlayers (HashMap highScores) { + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.listOfPlayers(highScores) method"); + } + +} diff --git a/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java b/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java similarity index 100% rename from exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java rename to exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java From b1dc1734a62c482b9a92cd14409f63bbe4674b74 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Thu, 30 Nov 2023 16:56:10 +0000 Subject: [PATCH 03/16] Introduction and exercise implementation complete --- concepts/maps/.meta/config.json | 2 +- concepts/maps/about.md | 47 +++++----- concepts/maps/introduction.md | 52 +++++++++++ concepts/maps/links.json | 26 ++++++ .../concept/arcade-scores/.docs/hints.md | 20 ++-- .../arcade-scores/.docs/instructions.md | 91 ++++++------------- .../arcade-scores/.docs/introduction.md | 52 +++++++++++ .../arcade-scores/.docs/introduction.md.tpl | 3 + .../concept/arcade-scores/.meta/design.md | 5 +- .../src/reference/java/ArcadeHighScore.java | 5 +- .../src/main/java/ArcadeHighScore.java | 14 +-- .../src/test/java/ArcadeHighScoreTest.java | 14 +++ 12 files changed, 230 insertions(+), 101 deletions(-) diff --git a/concepts/maps/.meta/config.json b/concepts/maps/.meta/config.json index d18545d3f..7818701c2 100644 --- a/concepts/maps/.meta/config.json +++ b/concepts/maps/.meta/config.json @@ -1,5 +1,5 @@ { - "blurb": "Maps are a data structure that holds key-value pairs. Keys and values can be of any data type, and the keys must be unique.", + "blurb": "Maps are a data structure that holds key-value pairs. Keys and values can be of any reference data type, and the keys must be unique.", "authors": [ "smcg468" ], diff --git a/concepts/maps/about.md b/concepts/maps/about.md index 4e1bc68d9..c31d5ab42 100644 --- a/concepts/maps/about.md +++ b/concepts/maps/about.md @@ -5,30 +5,30 @@ - Keys can be of any [reference type][reference-data-types], but must be unique. - Values can be of any reference type, they do not have to be unique. -The Map interface provides three collection views that can all be accessed individually +We have three different views that can all be accessed individually - set of keys, ```java -Map hashmap = new HashMap(); +Map map = new HashMap<>(); // Generates a set view of the keys in the hashmap -hashmap.keySet(); +map.keySet(); ``` - collection of values ```java -Map hashmap = new HashMap(); +Map map = new HashMap<>(); // Generates a set view of the values in the hashmap -hashmap.values(); +map.values(); ``` - set of key-value mappings. ````java -Map hashmap = new HashMap(); +Map map = new HashMap<>(); for (String key: map.keySet()) { System.out.println("Key = " + key); @@ -36,38 +36,43 @@ for (String key: map.keySet()) { } ```` -Due to Map being an interface, we must create an object of a class that implements the map interface. +## Map declaration + +Due to Map being an interface, it is recommended we create an object of a class that implements the map interface as shown in the example below that is creating an object of the HashMap class. +There are many useful [built-in functions][start-of-map-functions] that allow you to modify these map objects. ```java -Map hashmap = new HashMap(); +Map hashmap = new HashMap<>(); ``` -The first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. - -## SortedMap - -There are two map interfaces in Java, Map and [SortedMap][sorted-map] which extends the Map interface. -The main difference in Map and SortedMap is that the elements in a SortedMap are in sorted order. -The sorting order of the elements in a SortedMap are by the natural order of the keys, or by a specified comparator. +In regard to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. ## Classes that implement Map -We then have three classes which implement the Map interface, these are [HashMap][hash-map], [LinkedHashMap][linked-hash-map] and [TreeMap][tree-map]. +We then have the main three classes that are used which implement the Map interface, these are [HashMap][hash-map], [LinkedHashMap][linked-hash-map] and [TreeMap][tree-map]. +Below are some key differences in the three classes. ### Hashmap - +- Implements the Map interface. +- No guaranteed order of the elements inserted. +- Null values are allowed. ### LinkedHashMap -### Treemap +- Implements the Map interface. +- Elements are in the order that they have been inserted. +- Null values are allowed. +### Treemap +- Implements the Map, SortedMap and NavigableMap interfaces. +- Elements are sorted according to the natural ordering, keys will be compared using the compareTo() method by default or keys can be compared using another comparator if specified. +- Null values are **not** allowed. [maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html [reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 -[start-of-map-methods]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- -[sorted-map]: https://docs.oracle.com/javase/8/docs/api/java/util/SortedMap.html [hash-map]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html [linked-hash-map]: https://docs.oracle.com/javase/8/docs/api/java/util/LinkedHashMap.html -[tree-map]: https://docs.oracle.com/javase/8/docs/api/java/util/TreeMap.html \ No newline at end of file +[tree-map]: https://docs.oracle.com/javase/8/docs/api/java/util/TreeMap.html +[start-of-map-functions]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- diff --git a/concepts/maps/introduction.md b/concepts/maps/introduction.md index e69de29bb..80347541f 100644 --- a/concepts/maps/introduction.md +++ b/concepts/maps/introduction.md @@ -0,0 +1,52 @@ +# Introduction + +[Maps][maps] in Java is an interface that holds data in key-value pairs. + +- Keys can be of any [reference type][reference-data-types], but must be unique. +- Values can be of any reference type, they do not have to be unique. + +We have three different views that can all be accessed individually + +- set of keys, + +```java +Map map = new HashMap<>(); + +// Generates a set view of the keys in the hashmap +map.keySet(); +``` + +- collection of values + +```java +Map map = new HashMap<>(); + +// Generates a set view of the values in the hashmap +map.values(); +``` + +- set of key-value mappings. + +````java +Map map = new HashMap<>(); + +for (String key: map.keySet()) { + System.out.println("Key = " + key); + System.out.println("Value = " + map.get(key)); +} +```` + +## Map declaration + +Due to Map being an interface, it is recommended we create an object of a class that implements the map interface as shown in the example below that is creating an object of the HashMap class. +There are many useful [built-in functions][start-of-map-functions] that allow you to modify these map objects. + +```java +Map hashmap = new HashMap<>(); +``` + +In regard to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. + +[maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html +[reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 +[start-of-map-functions]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- diff --git a/concepts/maps/links.json b/concepts/maps/links.json index e69de29bb..c8b4c8403 100644 --- a/concepts/maps/links.json +++ b/concepts/maps/links.json @@ -0,0 +1,26 @@ +[ + { + "url": "https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html", + "description": "Detailed explanation of the map interface in Java." + }, + { + "url": "https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3", + "description": "Reference types defined in Java, reference types are the data types used for the key/value pairs." + }, + { + "url": "https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html", + "description": "Detailed explanation of the HashMap class in Java." + }, + { + "url": "https://docs.oracle.com/javase/8/docs/api/java/util/LinkedHashMap.html", + "description": "Detailed explanation of the LinkedHashMap class in Java." + }, + { + "url": "https://docs.oracle.com/javase/8/docs/api/java/util/TreeMap.html", + "description": "Detailed explanation of the TreeMap class in Java." + }, + { + "url": "https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size--", + "description": "List of the built-in functions that can be utilised with map objects." + } +] \ No newline at end of file diff --git a/exercises/concept/arcade-scores/.docs/hints.md b/exercises/concept/arcade-scores/.docs/hints.md index a710dac96..50f7d63d9 100644 --- a/exercises/concept/arcade-scores/.docs/hints.md +++ b/exercises/concept/arcade-scores/.docs/hints.md @@ -7,30 +7,36 @@ ## 1. Define a new high score map - It should return an empty [map][maps]. -- [Map module][map-module] functions or literal forms can be useful. +- [Create an object][create-object] of the HashMap class using the appropriate [reference type][reference-data-types] for the keys and the values. ## 2. Add players to the high score map - The resulting map should be returned. -- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-put] puts a value in a map under a given key. +- One of the [built-in functions][map-put] can be used to put a value in a map under a given key. ## 3. Remove players from the score map - The resulting map should be returned. -- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-delete] deletes a key from a map. +- One of the [built-in functions][map-remove] can be used to remove a key/value pair from a map. ## 4. Reset a player's score - The resulting map should be returned with the player's score reset to an initial value of 0. -- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-put] puts a value in a map under a given key. +- One of the [built-in functions][map-put] can be used to put a value in a map under a given key. ## 5. Update a player's score - The resulting map should be returned with the player's updated score. -- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-update] updates a value in a map under a given key. +- One of the [built-in functions][map-get-or-default] can be used to get a value in a map under a given key if the key is present and update the value, or add the key with a default value if it is not present.. ## 6. Get a list of players -- [Map module][map-module] contains functions useful for manipulating maps. [One of them][map-keys] returns a list of all keys in a map. +- One of the [built-in functions][map-keys] returns a set of all keys in a map. -[maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html \ No newline at end of file +[maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html +[create-object]: https://docs.oracle.com/javase/tutorial/java/javaOO/objectcreation.html +[reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 +[map-put]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#put-K-V- +[map-remove]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#remove-java.lang.Object- +[map-get-or-default]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#getOrDefault-java.lang.Object-V- +[map-keys]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#keySet-- diff --git a/exercises/concept/arcade-scores/.docs/instructions.md b/exercises/concept/arcade-scores/.docs/instructions.md index e2f5dd9f3..fc6e4678c 100644 --- a/exercises/concept/arcade-scores/.docs/instructions.md +++ b/exercises/concept/arcade-scores/.docs/instructions.md @@ -5,112 +5,79 @@ In this exercise, you're implementing a way to keep track of the high scores for ## 1. Define a new high score map To make a new high score map, create an empty hashmap object with keys of type String and values of type Integer. +Create this map outside of the functions scopes so we can reference it within each function. ```java -Map highScores = new HashMap<>(); +System.out.println(ArcadeHighScores.highScores); +// => {} ``` ## 2. Add players to the high score map -To add a player to the high score map, define `highScores.addPlayer()`, which is a function which takes 2 arguments: +To add a player to the high score map, define `ArcadeHighScore.addPlayer()`, which is a function which takes two arguments: - The first argument is the players name as a String. - The second argument is the players score as an Integer. ````java -Map highScores = new HashMap<>(); +ArcadeHighScore.addPlayer("Dave Thomas", 0); -// {Dave Thomas=78} -highScores.put("Dave Thomas", 0); - -// {José Valim=81} -highScores.put("José Valim", 0); +// => {Dave Thomas=0} ```` ## 3. Remove players from the score map -To remove a player from the high score map, define the `highScores.removePlayer()` method, which takes 1 argument: +To remove a player from the high score map, define the `ArcadeHighScore.removePlayer()` method, which takes one argument: - The argument is the key of the item, in this case the name of the player. ````java -Map highScores = new HashMap<>(); -// Adding the player to the highScores HashMap -highScores.put("Dave Thomas", 0); +ArcadeHighScore.removePlayer("Dave Thomas"); -//Removing the player -highScores.remove("Dave Thomas"); +// => {} ```` ## 4. Reset a player's score -To reset a player's score, use the `highScores.resetScore()` method, which takes 2 arguments: +To reset a player's score, define the `ArcadeHighScore.resetScore()` method, which takes 2 arguments: - The first argument is the players name. - The second argument is the new score for the player, in this case 0. -The function should also work if the player doesn't have a score. +The function should also work if the player isn't currently present in the map. ```java -Map highScores = new HashMap<>(); -// Resetting Daves score to 0 -highScores.put("Dave Thomas", 0); +ArcadeHighScore.resetScore("Dave Thomas", 0); +// => (Dave Thomas=0); ``` ## 5. Update a player's score -To update a player's score by adding to the previous score, define `highScore.update_score/3`, which takes 3 arguments: +To update a player's score by adding to the previous score, define `ArcadeHighScore.updateScore()`, which takes two arguments: -- The first argument is the map of scores. -- The second argument is the name of the player as a string, whose score you wish to update. -- The third argument is the score that you wish to **add** to the stored high score. +- The first argument is the name of the player whose score you wish to update. +- The second argument is the score that you wish to **add** to their current high score. The function should also work if the player doesn't have a previous score - assume the previous score is 0. ```java -Map highScores = new HashMap<>(); -// Add players score to the highScores map -highScores.put("Dave Thomas", 19); - -// Save t -Integer oldScore = highScores.get("Dave Thomas"); - -highScores.put("Dave Thomas", oldScore + score); - - +// Adding a players score to update. +ArcadeHighScore.addPlayer("Lional Messi", 48); +// => {Lionel Messi=18} + +ArcadeHighScore.updateScore("Lionel Messi", 40); +// => {Lionel Messi=88} + +// Updating a players score who doesn't have a previous score +ArcadeHighScore.updateScore("Dave Thomas", 57); +// => {Lionel Messi=88, Dave Thomas=57} ``` ## 6. Get a list of players -To get a list of players, reference the `highScores` object by printing it: +To get a list of players, define the `ArcadeHighScore.listOfPlayers()`, which takes no arguments: ````java -Map highScores = new HashMap<>(); - -// Key: "Dave Thomas", Value: 78 -highScores.put("Dave Thomas", 78); - -// Key: "José Valim", Value: 81 -highScores.put("José Valim", 81); - -// Print the highScore HashMap -// Returns {Dave Thomas=78, José Valim=81} -System.out.println(highScores); +ArcadeHighScore.listOfPlayers(); +// => {Lionel Messi, Dave Thomas} ```` - -Or we can simply return highScores: - -````java -Map highScores = new HashMap<>(); - -// Key: "Dave Thomas", Value: 78 -highScores.put("Dave Thomas", 78); - -// Key: "José Valim", Value: 81 -highScores.put("José Valim", 81); - -Map listOfPlayers(){ - // Returns {Dave Thomas=78, José Valim=81} - return highscores; -} -```` \ No newline at end of file diff --git a/exercises/concept/arcade-scores/.docs/introduction.md b/exercises/concept/arcade-scores/.docs/introduction.md index e69de29bb..cd1b1d310 100644 --- a/exercises/concept/arcade-scores/.docs/introduction.md +++ b/exercises/concept/arcade-scores/.docs/introduction.md @@ -0,0 +1,52 @@ +# Introduction + +[Maps][maps] in Java is an interface that holds data in key-value pairs. + +- Keys can be of any [reference type][reference-data-types], but must be unique. +- Values can be of any reference type, they do not have to be unique. + +We have three different views that can all be accessed individually + +- set of keys, + +```java +Map map = new HashMap<>(); + +// Generates a set view of the keys in the hashmap +map.keySet(); +``` + +- collection of values + +```java +Map map = new HashMap<>(); + +// Generates a set view of the values in the hashmap +map.values(); +``` + +- set of key-value mappings. + +````java +Map map = new HashMap<>(); + +for (String key: map.keySet()) { + System.out.println("Key = " + key); + System.out.println("Value = " + map.get(key)); +} +```` + +## Map declaration + +Due to Map being an interface, it is recommended we create an object of a class that implements the map interface as shown in the example below that is creating an object of the HashMap class. +There are many useful [built-in functions][start-of-map-functions] that allow you to modify these map objects. + +```java +Map hashmap = new HashMap<>(); +``` + +In regard to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. + +[maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html +[reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 +[start-of-map-functions]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- \ No newline at end of file diff --git a/exercises/concept/arcade-scores/.docs/introduction.md.tpl b/exercises/concept/arcade-scores/.docs/introduction.md.tpl index e69de29bb..f1ea541d1 100644 --- a/exercises/concept/arcade-scores/.docs/introduction.md.tpl +++ b/exercises/concept/arcade-scores/.docs/introduction.md.tpl @@ -0,0 +1,3 @@ +# Introduction + +%{concept:maps} diff --git a/exercises/concept/arcade-scores/.meta/design.md b/exercises/concept/arcade-scores/.meta/design.md index 7047b9a46..9736b03c2 100644 --- a/exercises/concept/arcade-scores/.meta/design.md +++ b/exercises/concept/arcade-scores/.meta/design.md @@ -10,10 +10,10 @@ - Know how to update values in a map. - Know how to remove items from a map. - Know how to retrieve all items in a map. -- Know the difference in `Map` and `SortedMap` interfaces. - Know what a `HashMap` is. - Know what a `LinkedHashMap` is. - Know what a `TreeMap` is. +- Know the main differences in `HashMap`, `LinkedHashMap` and `TreeMap`. ## Out of scope @@ -23,6 +23,7 @@ - `EnumMap` - `ConcurrentHashMap` - `ConcurrentSkipListMap` +- `SortedMap` ## Concepts @@ -30,5 +31,5 @@ ## Prerequisites -- `String`: strings will be the key in our map. +- `String`: Strings will be the key in our map. - `Integer`: Integers will be the value in our map. \ No newline at end of file diff --git a/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java index 8e6afb627..9e9bd58d8 100644 --- a/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java @@ -1,5 +1,6 @@ import java.util.HashMap; import java.util.Map; +import java.util.Set; public class ArcadeHighScore { @@ -28,7 +29,7 @@ Map updateScore (String name, Integer score) { return highScores; } - Map listOfPlayers (HashMap highScores) { - return highScores; + Set listOfPlayers () { + return highScores.keySet(); } } diff --git a/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java b/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java index dde205a23..4ed2b9bbd 100644 --- a/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java @@ -1,26 +1,28 @@ import java.util.HashMap; import java.util.Map; +import java.util.Set; public class ArcadeHighScore { + Map addPlayer (String name, Integer score) { - throw new UnsupportedOperationException("Please implement the ArcadeHighScore.addPlayer(highScores) method"); + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.addPlayer(name, score) method"); } Map removePlayer (String name) { - throw new UnsupportedOperationException("Please implement the ArcadeHighScore.removePlayer(highScores) method"); + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.removePlayer(name) method"); } Map resetScore (String name) { - throw new UnsupportedOperationException("Please implement the ArcadeHighScore.resetScore(highScores) method"); + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.resetScore(name, score) method"); } Map updateScore (String name) { - throw new UnsupportedOperationException("Please implement the ArcadeHighScore.updateScore(highScores) method"); + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.updateScore(name, score) method"); } - Map listOfPlayers (HashMap highScores) { - throw new UnsupportedOperationException("Please implement the ArcadeHighScore.listOfPlayers(highScores) method"); + Set listOfPlayers () { + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.listOfPlayers() method"); } } diff --git a/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java b/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java index 03ef40844..88f7ce483 100644 --- a/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java +++ b/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java @@ -1,2 +1,16 @@ +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Tag; +import org.junit.jupiter.api.Test; +import org.assertj.core.api.Assertions; + public class ArcadeHighScoreTest { + + @Test + @Tag("task:1") + @DisplayName("Printing a badge for an employee") + public void labelForEmployee() { + ArcadeHighScore arcadeHighScore = new ArcadeHighScore(); + assertThat(); + } + } From 43cf2d44a8764d8ada9091d58c5bb2eec1cd4093 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Mon, 4 Dec 2023 17:23:59 +0000 Subject: [PATCH 04/16] Tests written and documentation updates made --- concepts/maps/about.md | 8 +- concepts/maps/introduction.md | 8 +- .../concept/arcade-scores/.docs/hints.md | 2 +- .../arcade-scores/.docs/instructions.md | 10 +-- .../src/reference/java/ArcadeHighScore.java | 4 + exercises/concept/arcade-scores/build.gradle | 16 ++-- .../src/main/java/ArcadeHighScore.java | 8 +- .../src/test/java/ArcadeHighScoreTest.java | 84 +++++++++++++++++-- exercises/settings.gradle | 6 +- 9 files changed, 113 insertions(+), 33 deletions(-) diff --git a/concepts/maps/about.md b/concepts/maps/about.md index c31d5ab42..770cb41af 100644 --- a/concepts/maps/about.md +++ b/concepts/maps/about.md @@ -7,7 +7,7 @@ We have three different views that can all be accessed individually -- set of keys, +- keys, ```java Map map = new HashMap<>(); @@ -16,7 +16,7 @@ Map map = new HashMap<>(); map.keySet(); ``` -- collection of values +- values ```java Map map = new HashMap<>(); @@ -25,7 +25,7 @@ Map map = new HashMap<>(); map.values(); ``` -- set of key-value mappings. +- and key-value mappings. ````java Map map = new HashMap<>(); @@ -45,7 +45,7 @@ There are many useful [built-in functions][start-of-map-functions] that allow yo Map hashmap = new HashMap<>(); ``` -In regard to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. +In regards to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. ## Classes that implement Map diff --git a/concepts/maps/introduction.md b/concepts/maps/introduction.md index 80347541f..cca055ae4 100644 --- a/concepts/maps/introduction.md +++ b/concepts/maps/introduction.md @@ -7,7 +7,7 @@ We have three different views that can all be accessed individually -- set of keys, +- keys, ```java Map map = new HashMap<>(); @@ -16,7 +16,7 @@ Map map = new HashMap<>(); map.keySet(); ``` -- collection of values +- values ```java Map map = new HashMap<>(); @@ -25,7 +25,7 @@ Map map = new HashMap<>(); map.values(); ``` -- set of key-value mappings. +- and key-value mappings. ````java Map map = new HashMap<>(); @@ -45,7 +45,7 @@ There are many useful [built-in functions][start-of-map-functions] that allow yo Map hashmap = new HashMap<>(); ``` -In regard to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. +In regards to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. [maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html [reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 diff --git a/exercises/concept/arcade-scores/.docs/hints.md b/exercises/concept/arcade-scores/.docs/hints.md index 50f7d63d9..7e04b3a8d 100644 --- a/exercises/concept/arcade-scores/.docs/hints.md +++ b/exercises/concept/arcade-scores/.docs/hints.md @@ -7,7 +7,7 @@ ## 1. Define a new high score map - It should return an empty [map][maps]. -- [Create an object][create-object] of the HashMap class using the appropriate [reference type][reference-data-types] for the keys and the values. +- [Create an object][create-object] of the HashMap class using the declared `Map highScores`. ## 2. Add players to the high score map diff --git a/exercises/concept/arcade-scores/.docs/instructions.md b/exercises/concept/arcade-scores/.docs/instructions.md index fc6e4678c..7951ccd81 100644 --- a/exercises/concept/arcade-scores/.docs/instructions.md +++ b/exercises/concept/arcade-scores/.docs/instructions.md @@ -4,11 +4,10 @@ In this exercise, you're implementing a way to keep track of the high scores for ## 1. Define a new high score map -To make a new high score map, create an empty hashmap object with keys of type String and values of type Integer. -Create this map outside of the functions scopes so we can reference it within each function. +To make a new high score map, create an empty hashmap object with keys of type String and values of type Integer using the `Map highScores` declaration provided. ```java -System.out.println(ArcadeHighScores.highScores); +System.out.println(ArcadeHighScore.highScores); // => {} ``` @@ -39,15 +38,14 @@ ArcadeHighScore.removePlayer("Dave Thomas"); ## 4. Reset a player's score -To reset a player's score, define the `ArcadeHighScore.resetScore()` method, which takes 2 arguments: +To reset a player's score, define the `ArcadeHighScore.resetScore()` method, which takes 1 argument: - The first argument is the players name. -- The second argument is the new score for the player, in this case 0. The function should also work if the player isn't currently present in the map. ```java -ArcadeHighScore.resetScore("Dave Thomas", 0); +ArcadeHighScore.resetScore("Dave Thomas"); // => (Dave Thomas=0); ``` diff --git a/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java index 9e9bd58d8..c9095d289 100644 --- a/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java @@ -6,6 +6,10 @@ public class ArcadeHighScore { Map highScores = new HashMap<>(); + Map defineMap() { + return highScores; + } + Map addPlayer (String name, Integer score) { highScores.put(name, score); return highScores; diff --git a/exercises/concept/arcade-scores/build.gradle b/exercises/concept/arcade-scores/build.gradle index 8a5151554..9daa11cb3 100644 --- a/exercises/concept/arcade-scores/build.gradle +++ b/exercises/concept/arcade-scores/build.gradle @@ -2,18 +2,22 @@ plugins { id 'java' } -group 'org.example' -version 'unspecified' - repositories { mavenCentral() } dependencies { - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1' + testImplementation platform("org.junit:junit-bom:5.10.0") + testImplementation "org.junit.jupiter:junit-jupiter" + testImplementation "org.assertj:assertj-core:3.15.0" } test { useJUnitPlatform() -} \ No newline at end of file + + testLogging { + exceptionFormat = "full" + showStandardStreams = true + events = ["passed", "failed", "skipped"] + } +} diff --git a/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java b/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java index 4ed2b9bbd..d97a67fc8 100644 --- a/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java @@ -4,6 +4,11 @@ public class ArcadeHighScore { + Map highScores; + + Map defineMap(){ + throw new UnsupportedOperationException("Please initialise the ArcadeHighScore.highScores map"); + } Map addPlayer (String name, Integer score) { throw new UnsupportedOperationException("Please implement the ArcadeHighScore.addPlayer(name, score) method"); @@ -17,12 +22,11 @@ Map resetScore (String name) { throw new UnsupportedOperationException("Please implement the ArcadeHighScore.resetScore(name, score) method"); } - Map updateScore (String name) { + Map updateScore (String name, Integer score) { throw new UnsupportedOperationException("Please implement the ArcadeHighScore.updateScore(name, score) method"); } Set listOfPlayers () { throw new UnsupportedOperationException("Please implement the ArcadeHighScore.listOfPlayers() method"); } - } diff --git a/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java b/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java index 88f7ce483..1106f84f7 100644 --- a/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java +++ b/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java @@ -1,16 +1,90 @@ import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; -import org.assertj.core.api.Assertions; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertNotNull; public class ArcadeHighScoreTest { + private final ArcadeHighScore arcadeHighScore = new ArcadeHighScore(); + + @Test @Tag("task:1") - @DisplayName("Printing a badge for an employee") - public void labelForEmployee() { - ArcadeHighScore arcadeHighScore = new ArcadeHighScore(); - assertThat(); + @DisplayName("Define a map to store the high scores") + public void defineMap() { + assertNotNull(arcadeHighScore.highScores); + } + + @Test + @Tag("task:2") + @DisplayName("Add a player to the high scores map") + public void addPlayer() { + String name = "David James"; + Integer score = 67; + + arcadeHighScore.addPlayer(name, score); + assertThat(arcadeHighScore.highScores).containsEntry(name, score); + } + + @Test + @Tag("task:3") + @DisplayName("Remove a player from the high scores map") + public void removePlayer() { + String name = "David James"; + Integer score = 67; + + arcadeHighScore.addPlayer(name, score); + assertThat(arcadeHighScore.highScores).containsEntry(name, score); + + arcadeHighScore.removePlayer(name); + assertThat(arcadeHighScore.highScores).isEmpty(); + } + + @Test + @Tag("task:4") + @DisplayName("Reset a players score to 0") + public void resetScore() { + String name = "David James"; + Integer score = 67; + + arcadeHighScore.addPlayer(name, score); + assertThat(arcadeHighScore.highScores).containsEntry(name, score); + + arcadeHighScore.resetScore("David James"); + assertThat(arcadeHighScore.highScores).containsEntry(name, 0); + } + + @Test + @Tag("task:5") + @DisplayName("Update a players score") + public void updateScore() { + String name = "David James"; + Integer score = 67; + + arcadeHighScore.addPlayer(name, score); + assertThat(arcadeHighScore.highScores).containsEntry(name, score); + + Integer newScore = 31; + + arcadeHighScore.updateScore(name, newScore); + assertThat(arcadeHighScore.highScores).containsEntry(name, score + newScore); } + @Test + @Tag("task:6") + @DisplayName("Get a list of players") + public void listOfPlayers() { + String name = "David James"; + Integer score = 67; + + String secondName = "Lionel Messi"; + Integer secondScore = 87; + + arcadeHighScore.addPlayer(name, score); + arcadeHighScore.addPlayer(secondName, secondScore); + + assertThat(arcadeHighScore.highScores).containsEntry(name, score).containsEntry(secondName, secondScore); + } } diff --git a/exercises/settings.gradle b/exercises/settings.gradle index c0115c6bd..7a14a8325 100644 --- a/exercises/settings.gradle +++ b/exercises/settings.gradle @@ -17,6 +17,7 @@ include 'concept:football-match-reports' include 'concept:wizards-and-warriors' include 'concept:calculator-conundrum' include 'concept:logs-logs-logs' +include 'concept:arcade-scores' // practice exercises include 'practice:accumulate' @@ -150,8 +151,3 @@ include 'practice:wordy' include 'practice:yacht' include 'practice:zebra-puzzle' include 'practice:zipper' -include 'concept:arcade-high-score' -findProject(':concept:arcade-high-score')?.name = 'arcade-high-score' -include 'concept:arcade-high-score' -findProject(':concept:arcade-high-score')?.name = 'arcade-high-score' - From 41da4cb0aa6c393e36222775b16f679b5a7b4345 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Mon, 4 Dec 2023 18:00:43 +0000 Subject: [PATCH 05/16] documentation updated --- .../.docs/hints.md | 0 .../.docs/instructions.md | 8 +++---- .../.docs/introduction.md | 2 +- .../.docs/introduction.md.tpl | 0 .../arcade-high-score/.meta/config.json | 23 +++++++++++++++++++ .../.meta/design.md | 2 +- .../src/reference/java/ArcadeHighScore.java | 0 .../build.gradle | 0 .../src/main/java/ArcadeHighScore.java | 2 +- .../src/test/java/ArcadeHighScoreTest.java | 4 ++-- .../concept/arcade-scores/.meta/config.json | 0 exercises/settings.gradle | 2 +- 12 files changed, 32 insertions(+), 11 deletions(-) rename exercises/concept/{arcade-scores => arcade-high-score}/.docs/hints.md (100%) rename exercises/concept/{arcade-scores => arcade-high-score}/.docs/instructions.md (86%) rename exercises/concept/{arcade-scores => arcade-high-score}/.docs/introduction.md (98%) rename exercises/concept/{arcade-scores => arcade-high-score}/.docs/introduction.md.tpl (100%) create mode 100644 exercises/concept/arcade-high-score/.meta/config.json rename exercises/concept/{arcade-scores => arcade-high-score}/.meta/design.md (93%) rename exercises/concept/{arcade-scores => arcade-high-score}/.meta/src/reference/java/ArcadeHighScore.java (100%) rename exercises/concept/{arcade-scores => arcade-high-score}/build.gradle (100%) rename exercises/concept/{arcade-scores => arcade-high-score}/src/main/java/ArcadeHighScore.java (95%) rename exercises/concept/{arcade-scores => arcade-high-score}/src/test/java/ArcadeHighScoreTest.java (93%) delete mode 100644 exercises/concept/arcade-scores/.meta/config.json diff --git a/exercises/concept/arcade-scores/.docs/hints.md b/exercises/concept/arcade-high-score/.docs/hints.md similarity index 100% rename from exercises/concept/arcade-scores/.docs/hints.md rename to exercises/concept/arcade-high-score/.docs/hints.md diff --git a/exercises/concept/arcade-scores/.docs/instructions.md b/exercises/concept/arcade-high-score/.docs/instructions.md similarity index 86% rename from exercises/concept/arcade-scores/.docs/instructions.md rename to exercises/concept/arcade-high-score/.docs/instructions.md index 7951ccd81..d84f21a21 100644 --- a/exercises/concept/arcade-scores/.docs/instructions.md +++ b/exercises/concept/arcade-high-score/.docs/instructions.md @@ -4,7 +4,7 @@ In this exercise, you're implementing a way to keep track of the high scores for ## 1. Define a new high score map -To make a new high score map, create an empty hashmap object with keys of type String and values of type Integer using the `Map highScores` declaration provided. +To make a new high score map, create an empty `HashMap` object by initialising the `Map highScores` declaration provided. ```java System.out.println(ArcadeHighScore.highScores); @@ -40,9 +40,7 @@ ArcadeHighScore.removePlayer("Dave Thomas"); To reset a player's score, define the `ArcadeHighScore.resetScore()` method, which takes 1 argument: -- The first argument is the players name. - -The function should also work if the player isn't currently present in the map. +- The argument is the players name. ```java ArcadeHighScore.resetScore("Dave Thomas"); @@ -61,7 +59,7 @@ The function should also work if the player doesn't have a previous score - assu ```java // Adding a players score to update. ArcadeHighScore.addPlayer("Lional Messi", 48); -// => {Lionel Messi=18} +// => {Lionel Messi=48} ArcadeHighScore.updateScore("Lionel Messi", 40); // => {Lionel Messi=88} diff --git a/exercises/concept/arcade-scores/.docs/introduction.md b/exercises/concept/arcade-high-score/.docs/introduction.md similarity index 98% rename from exercises/concept/arcade-scores/.docs/introduction.md rename to exercises/concept/arcade-high-score/.docs/introduction.md index cd1b1d310..80347541f 100644 --- a/exercises/concept/arcade-scores/.docs/introduction.md +++ b/exercises/concept/arcade-high-score/.docs/introduction.md @@ -49,4 +49,4 @@ In regard to the declaration of the HashMap object, the first data type specifie [maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html [reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 -[start-of-map-functions]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- \ No newline at end of file +[start-of-map-functions]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- diff --git a/exercises/concept/arcade-scores/.docs/introduction.md.tpl b/exercises/concept/arcade-high-score/.docs/introduction.md.tpl similarity index 100% rename from exercises/concept/arcade-scores/.docs/introduction.md.tpl rename to exercises/concept/arcade-high-score/.docs/introduction.md.tpl diff --git a/exercises/concept/arcade-high-score/.meta/config.json b/exercises/concept/arcade-high-score/.meta/config.json new file mode 100644 index 000000000..ad952d678 --- /dev/null +++ b/exercises/concept/arcade-high-score/.meta/config.json @@ -0,0 +1,23 @@ +{ + "authors": [ + "smcg468" + ], + "files": { + "solution": [ + "src/main/java/ArcadeHighScore.java" + ], + "test": [ + "src/test/java/ArcadeHighScoreTest.java" + ], + "exemplar": [ + ".meta/src/reference/java/ArcadeHighScore.java" + ], + "invalidator": [ + "build.gradle" + ] + }, + "forked_from": [ + "elixir/high-score" + ], + "blurb": "Maps are a data structure that holds key-value pairs. Keys and values can be of any reference data type, and the keys must be unique." +} diff --git a/exercises/concept/arcade-scores/.meta/design.md b/exercises/concept/arcade-high-score/.meta/design.md similarity index 93% rename from exercises/concept/arcade-scores/.meta/design.md rename to exercises/concept/arcade-high-score/.meta/design.md index 9736b03c2..53b792906 100644 --- a/exercises/concept/arcade-scores/.meta/design.md +++ b/exercises/concept/arcade-high-score/.meta/design.md @@ -32,4 +32,4 @@ ## Prerequisites - `String`: Strings will be the key in our map. -- `Integer`: Integers will be the value in our map. \ No newline at end of file +- `Integer`: Integers will be the value in our map. diff --git a/exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java similarity index 100% rename from exercises/concept/arcade-scores/.meta/src/reference/java/ArcadeHighScore.java rename to exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java diff --git a/exercises/concept/arcade-scores/build.gradle b/exercises/concept/arcade-high-score/build.gradle similarity index 100% rename from exercises/concept/arcade-scores/build.gradle rename to exercises/concept/arcade-high-score/build.gradle diff --git a/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java similarity index 95% rename from exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java rename to exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java index d97a67fc8..cbfc3623c 100644 --- a/exercises/concept/arcade-scores/src/main/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java @@ -19,7 +19,7 @@ Map removePlayer (String name) { } Map resetScore (String name) { - throw new UnsupportedOperationException("Please implement the ArcadeHighScore.resetScore(name, score) method"); + throw new UnsupportedOperationException("Please implement the ArcadeHighScore.resetScore(name) method"); } Map updateScore (String name, Integer score) { diff --git a/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java similarity index 93% rename from exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java rename to exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java index 1106f84f7..f8b8aac85 100644 --- a/exercises/concept/arcade-scores/src/test/java/ArcadeHighScoreTest.java +++ b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java @@ -14,7 +14,7 @@ public class ArcadeHighScoreTest { @Tag("task:1") @DisplayName("Define a map to store the high scores") public void defineMap() { - assertNotNull(arcadeHighScore.highScores); + assertNotNull(arcadeHighScore.defineMap()); } @Test @@ -85,6 +85,6 @@ public void listOfPlayers() { arcadeHighScore.addPlayer(name, score); arcadeHighScore.addPlayer(secondName, secondScore); - assertThat(arcadeHighScore.highScores).containsEntry(name, score).containsEntry(secondName, secondScore); + assertThat(arcadeHighScore.listOfPlayers()).contains(name).contains(secondName); } } diff --git a/exercises/concept/arcade-scores/.meta/config.json b/exercises/concept/arcade-scores/.meta/config.json deleted file mode 100644 index e69de29bb..000000000 diff --git a/exercises/settings.gradle b/exercises/settings.gradle index 7a14a8325..bf4fb52f5 100644 --- a/exercises/settings.gradle +++ b/exercises/settings.gradle @@ -17,7 +17,7 @@ include 'concept:football-match-reports' include 'concept:wizards-and-warriors' include 'concept:calculator-conundrum' include 'concept:logs-logs-logs' -include 'concept:arcade-scores' +include 'concept:arcade-high-score' // practice exercises include 'practice:accumulate' From c70a6a12f964e492cd241911bbade0dee88ff346 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Mon, 4 Dec 2023 18:33:52 +0000 Subject: [PATCH 06/16] updating config.json --- config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/config.json b/config.json index c16e760b2..3297dce05 100644 --- a/config.json +++ b/config.json @@ -1038,6 +1038,7 @@ "practices": [ "arrays", "strings", + "if-else-statements", "maps" ], "prerequisites": [ From b6de98bb8e62fd9bb04457c58a55db6159e512b6 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Mon, 4 Dec 2023 18:48:28 +0000 Subject: [PATCH 07/16] adding arcade-high-score to config --- config.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/config.json b/config.json index 3297dce05..9a9c74e07 100644 --- a/config.json +++ b/config.json @@ -271,6 +271,18 @@ "numbers", "strings" ] + }, + { + "slug": "arcade-high-score", + "name": "Arcade High Score", + "uuid": "07893a1a-eb93-4ad2-b98e-f3946c5e7fb2", + "concepts": [ + "maps" + ], + "prerequisites": [ + "numbers", + "strings" + ] } ], "practice": [ From 86e6f48e8ff8193e257bd2392fd3a6c7da83fef4 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Mon, 4 Dec 2023 19:04:33 +0000 Subject: [PATCH 08/16] Fixing linting issues --- concepts/maps/about.md | 6 +++--- config.json | 5 +++++ exercises/concept/arcade-high-score/.docs/hints.md | 3 +-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/concepts/maps/about.md b/concepts/maps/about.md index 770cb41af..f2078c807 100644 --- a/concepts/maps/about.md +++ b/concepts/maps/about.md @@ -1,6 +1,6 @@ # About -[Maps][maps] in Java is an interface that holds data in key-value pairs. +[Maps][maps] in Java is an interface that holds data in key-value pairs. - Keys can be of any [reference type][reference-data-types], but must be unique. - Values can be of any reference type, they do not have to be unique. @@ -54,11 +54,11 @@ Below are some key differences in the three classes. ### Hashmap -- Implements the Map interface. +- Implements the Map interface. - No guaranteed order of the elements inserted. - Null values are allowed. -### LinkedHashMap +### LinkedHashMap - Implements the Map interface. - Elements are in the order that they have been inserted. diff --git a/config.json b/config.json index 9a9c74e07..173ae7047 100644 --- a/config.json +++ b/config.json @@ -2218,6 +2218,11 @@ "uuid": "78f3c7b2-cb9c-4d21-8cb4-7106a188f713", "slug": "ternary-operators", "name": "Ternary Operators" + }, + { + "uuid": "5a10c26d-1f8a-46d3-ab85-686235000f0e", + "slug": "maps", + "name": "Maps" } ], "key_features": [ diff --git a/exercises/concept/arcade-high-score/.docs/hints.md b/exercises/concept/arcade-high-score/.docs/hints.md index 7e04b3a8d..d706296ad 100644 --- a/exercises/concept/arcade-high-score/.docs/hints.md +++ b/exercises/concept/arcade-high-score/.docs/hints.md @@ -35,8 +35,7 @@ [maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html [create-object]: https://docs.oracle.com/javase/tutorial/java/javaOO/objectcreation.html -[reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 [map-put]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#put-K-V- [map-remove]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#remove-java.lang.Object- [map-get-or-default]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#getOrDefault-java.lang.Object-V- -[map-keys]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#keySet-- +[map-keys]: https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html#keySet-- From 31cdb00f92830e92c5e37304697cf227f789a28d Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Mon, 4 Dec 2023 19:42:45 +0000 Subject: [PATCH 09/16] prerequisities in config file aligned with design prerequisites --- exercises/concept/arcade-high-score/.meta/design.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/concept/arcade-high-score/.meta/design.md b/exercises/concept/arcade-high-score/.meta/design.md index 53b792906..146e42458 100644 --- a/exercises/concept/arcade-high-score/.meta/design.md +++ b/exercises/concept/arcade-high-score/.meta/design.md @@ -31,5 +31,5 @@ ## Prerequisites -- `String`: Strings will be the key in our map. -- `Integer`: Integers will be the value in our map. +- `strings`: know how to use string formatting. +- `numbers`: know how to apply basic mathematical operators. From b9c97ff21cad4bb1c443c38a15c60055a8b58b42 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Tue, 30 Apr 2024 18:13:43 +0100 Subject: [PATCH 10/16] Comments addressed --- concepts/maps/introduction.md | 41 +++++++------- .../arcade-high-score/.docs/instructions.md | 53 ++++++++++--------- .../arcade-high-score/.meta/config.json | 2 +- .../concept/arcade-high-score/.meta/design.md | 13 +---- .../src/reference/java/ArcadeHighScore.java | 18 +++---- .../src/test/java/ArcadeHighScoreTest.java | 18 ++++++- exercises/settings.gradle | 2 +- 7 files changed, 75 insertions(+), 72 deletions(-) diff --git a/concepts/maps/introduction.md b/concepts/maps/introduction.md index cca055ae4..936105dfd 100644 --- a/concepts/maps/introduction.md +++ b/concepts/maps/introduction.md @@ -5,48 +5,43 @@ - Keys can be of any [reference type][reference-data-types], but must be unique. - Values can be of any reference type, they do not have to be unique. -We have three different views that can all be accessed individually +## Map declaration -- keys, +Due to Map being an interface, it is recommended we create an object of a class that implements the map interface as shown in the example below that is creating an object of the HashMap class. +There are many useful [built-in functions][start-of-map-functions] that allow you to modify these map objects. ```java -Map map = new HashMap<>(); - -// Generates a set view of the keys in the hashmap -map.keySet(); +Map hashmap = new HashMap<>(); ``` -- values +In regards to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. + +## Adding values to a Map + +The [put][put] method is what is used to add a value to a map. The first argument passed will be the key which must be unique +and the second argument will be the value. Both the key and value can be of any data type ```java -Map map = new HashMap<>(); +Map hashmap = new HashMap<>(); -// Generates a set view of the values in the hashmap -map.values(); +hashmap.put(String key, Integer value) ``` -- and key-value mappings. -````java -Map map = new HashMap<>(); +## Retrieving values from a Map -for (String key: map.keySet()) { - System.out.println("Key = " + key); - System.out.println("Value = " + map.get(key)); -} -```` +The [get][get] method is used to retrieve values from a map. Only one argument is passed to this method which is the key of the map entry you want to retrieve. -## Map declaration - -Due to Map being an interface, it is recommended we create an object of a class that implements the map interface as shown in the example below that is creating an object of the HashMap class. -There are many useful [built-in functions][start-of-map-functions] that allow you to modify these map objects. ```java Map hashmap = new HashMap<>(); + +hashmap.get(String key) ``` -In regards to the declaration of the HashMap object, the first data type specified `String` represents the data type of the key, and `Integer` represents the data type of the value in the example above. [maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html [reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 [start-of-map-functions]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- +[put]: google +[get]: google diff --git a/exercises/concept/arcade-high-score/.docs/instructions.md b/exercises/concept/arcade-high-score/.docs/instructions.md index d84f21a21..6f4514ffe 100644 --- a/exercises/concept/arcade-high-score/.docs/instructions.md +++ b/exercises/concept/arcade-high-score/.docs/instructions.md @@ -7,73 +7,76 @@ In this exercise, you're implementing a way to keep track of the high scores for To make a new high score map, create an empty `HashMap` object by initialising the `Map highScores` declaration provided. ```java -System.out.println(ArcadeHighScore.highScores); +ArcadeHighScore arcadeHighScore = new ArcadeHighScore(); +arcadeHighScore.getHighScores(); // => {} ``` ## 2. Add players to the high score map -To add a player to the high score map, define `ArcadeHighScore.addPlayer()`, which is a function which takes two arguments: +To add a player to the high score map, implement the `ArcadeHighScore.addPlayer()` method, which takes the player's name and score as arguments. -- The first argument is the players name as a String. -- The second argument is the players score as an Integer. +When called, it should store the player and their score in the `highScores` map. ````java -ArcadeHighScore.addPlayer("Dave Thomas", 0); - +arcadeHighScore.addPlayer("Dave Thomas", 0); +arcadeHighScore.getHighScores(); // => {Dave Thomas=0} ```` ## 3. Remove players from the score map -To remove a player from the high score map, define the `ArcadeHighScore.removePlayer()` method, which takes one argument: +To remove a player from the high score map, implement the `ArcadeHighScore.removePlayer()` method, which takes the player's name as an argument. -- The argument is the key of the item, in this case the name of the player. +When called, it should remove the entry associated to the player from the `highScores` map. ````java -ArcadeHighScore.removePlayer("Dave Thomas"); - +arcadeHighScore.removePlayer("Dave Thomas"); +arcadeHighScore.getHighScores(); // => {} ```` ## 4. Reset a player's score -To reset a player's score, define the `ArcadeHighScore.resetScore()` method, which takes 1 argument: +To reset a player's score, implement the `ArcadeHighScore.resetScore()` method, which takes the player's name as an argument. -- The argument is the players name. +When called, it should reset the score of the player to `0` in the `highScores` map. ```java -ArcadeHighScore.resetScore("Dave Thomas"); +arcadeHighScore.resetScore("Dave Thomas"); +arcadeHighScore.getHighScores(); // => (Dave Thomas=0); ``` ## 5. Update a player's score -To update a player's score by adding to the previous score, define `ArcadeHighScore.updateScore()`, which takes two arguments: +To update a player's score by adding to the previous score, implement `ArcadeHighScore.updateScore()` method, which takes the player's name and their new score as arguments. -- The first argument is the name of the player whose score you wish to update. -- The second argument is the score that you wish to **add** to their current high score. +When called, it should _add_ the new score to the player's previous score stored in the `highScores` map. -The function should also work if the player doesn't have a previous score - assume the previous score is 0. +If the player doesn't have a previous score, assume the previous score is `0`. ```java -// Adding a players score to update. -ArcadeHighScore.addPlayer("Lional Messi", 48); -// => {Lionel Messi=48} - -ArcadeHighScore.updateScore("Lionel Messi", 40); +ArcadeHighScore arcadeHighScore = new ArcadeHighScore(); +// Adding a players score to update +arcadeHighScore.addPlayer("Lionel Messi", 48); +arcadeHighScore.updateScore("Lionel Messi", 40); +arcadeHighScore.getHighScores(); // => {Lionel Messi=88} // Updating a players score who doesn't have a previous score -ArcadeHighScore.updateScore("Dave Thomas", 57); +arcadeHighScore.updateScore("Dave Thomas", 57); +arcadeHighScore.getHighScores(); // => {Lionel Messi=88, Dave Thomas=57} ``` ## 6. Get a list of players -To get a list of players, define the `ArcadeHighScore.listOfPlayers()`, which takes no arguments: +To get a list of players, implement the `ArcadeHighScore.getPlayers()` method. + +When called, it should return a collection containing all player's names currently stored in the `highScores` map. ````java -ArcadeHighScore.listOfPlayers(); +arcadeHighScore.getPlayers(); // => {Lionel Messi, Dave Thomas} ```` diff --git a/exercises/concept/arcade-high-score/.meta/config.json b/exercises/concept/arcade-high-score/.meta/config.json index ad952d678..8a42a4b7c 100644 --- a/exercises/concept/arcade-high-score/.meta/config.json +++ b/exercises/concept/arcade-high-score/.meta/config.json @@ -19,5 +19,5 @@ "forked_from": [ "elixir/high-score" ], - "blurb": "Maps are a data structure that holds key-value pairs. Keys and values can be of any reference data type, and the keys must be unique." + "blurb": "Learn about maps by keeping track of the high scores in your local arcade" } diff --git a/exercises/concept/arcade-high-score/.meta/design.md b/exercises/concept/arcade-high-score/.meta/design.md index 146e42458..d508d2ee0 100644 --- a/exercises/concept/arcade-high-score/.meta/design.md +++ b/exercises/concept/arcade-high-score/.meta/design.md @@ -9,21 +9,11 @@ - Know how to get keys from a map. - Know how to update values in a map. - Know how to remove items from a map. -- Know how to retrieve all items in a map. - Know what a `HashMap` is. -- Know what a `LinkedHashMap` is. -- Know what a `TreeMap` is. -- Know the main differences in `HashMap`, `LinkedHashMap` and `TreeMap`. ## Out of scope -- `AbstractMap` -- `IdentityHashMap` -- `WeakHashMap` -- `EnumMap` -- `ConcurrentHashMap` -- `ConcurrentSkipListMap` -- `SortedMap` +- Other Implementations of the `Map` Interface ## Concepts @@ -31,5 +21,4 @@ ## Prerequisites -- `strings`: know how to use string formatting. - `numbers`: know how to apply basic mathematical operators. diff --git a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java index c9095d289..80c054071 100644 --- a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java @@ -4,33 +4,33 @@ public class ArcadeHighScore { - Map highScores = new HashMap<>(); + private Map highScores = new HashMap<>(); + + Map getHighScores() { + return highScores; + } Map defineMap() { return highScores; } - Map addPlayer (String name, Integer score) { + void addPlayer(String name, Integer score) { highScores.put(name, score); - return highScores; } - Map removePlayer (String name) { + void removePlayer (String name) { highScores.remove(name); - return highScores; } - Map resetScore (String name) { + void resetScore (String name) { highScores.put(name, 0); - return highScores; } - Map updateScore (String name, Integer score) { + void updateScore (String name, Integer score) { Integer oldScore = highScores.getOrDefault(name, 0); highScores.put(name, oldScore + score); - return highScores; } Set listOfPlayers () { diff --git a/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java index f8b8aac85..fa43ba1a4 100644 --- a/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java +++ b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java @@ -1,8 +1,10 @@ +import org.assertj.core.api.Assert; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; public class ArcadeHighScoreTest { @@ -12,9 +14,10 @@ public class ArcadeHighScoreTest { @Test @Tag("task:1") - @DisplayName("Define a map to store the high scores") + @DisplayName("Define an empty map to store the high scores") public void defineMap() { assertNotNull(arcadeHighScore.defineMap()); + assertThat(arcadeHighScore.highScores.isEmpty()); } @Test @@ -72,6 +75,19 @@ public void updateScore() { assertThat(arcadeHighScore.highScores).containsEntry(name, score + newScore); } + @Test + @Tag("task:5") + @DisplayName("Update a players score who does not exist") + public void updateScoreOfNonExistentPlayer() { + String name = "David James"; + Integer score = 67; + + assertThat(arcadeHighScore).isNull(); + + arcadeHighScore.updateScore(name, score); + assertThat(arcadeHighScore.highScores).containsEntry(name, score); + } + @Test @Tag("task:6") @DisplayName("Get a list of players") diff --git a/exercises/settings.gradle b/exercises/settings.gradle index aa08cccac..17c2302c5 100644 --- a/exercises/settings.gradle +++ b/exercises/settings.gradle @@ -2,6 +2,7 @@ rootProject.name = 'exercism-java' // concept exercises include 'concept:annalyns-infiltration' +include 'concept:arcade-high-score' include 'concept:bird-watcher' // include 'concept:blackjack' // deprecated include 'concept:booking-up-for-beauty' @@ -20,7 +21,6 @@ include 'concept:salary-calculator' include 'concept:squeaky-clean' include 'concept:tim-from-marketing' include 'concept:wizards-and-warriors' -include 'concept:arcade-high-score' // practice exercises // include 'practice:accumulate' // deprecated From 2b97e0ecb506d2fec157fe874bf4f821365fc4d9 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Tue, 30 Apr 2024 18:38:28 +0100 Subject: [PATCH 11/16] merge conflict --- config.json | 1745 +++------------------------------------------------ 1 file changed, 84 insertions(+), 1661 deletions(-) diff --git a/config.json b/config.json index d9c8264e8..104f75770 100644 --- a/config.json +++ b/config.json @@ -272,1634 +272,58 @@ ] }, { -<<<<<<< HEAD - "slug": "arcade-high-score", - "name": "Arcade High Score", - "uuid": "07893a1a-eb93-4ad2-b98e-f3946c5e7fb2", - "concepts": [ - "maps" - ], - "prerequisites": [ - "numbers", - "strings" - ] -======= - "slug": "wizards-and-warriors-2", - "name": "Wizards and Warriors 2", - "uuid": "752d6968-8600-426f-ad26-fa7c53cf1ac2", - "concepts": [ - "method-overloading" - ], - "prerequisites": [ - "classes", - "strings", - "enums" - ], - "status": "active" - }, - { - "slug": "secrets", - "name": "Secrets", - "uuid": "b6485b16-e94d-41ce-9689-d94b70266f5e", - "concepts": [ - "bit-manipulation" - ], - "prerequisites": [ - "numbers" - ] - }, - { - "slug": "gotta-snatch-em-all", - "name": "Gotta Snatch 'Em All", - "uuid": "a7938215-4597-4c51-8ceb-6514d5654485", - "concepts": [ - "sets" - ], - "prerequisites": [ - "lists", - "generic-types" - ], - "status": "beta" ->>>>>>> main - } - ], - "practice": [ - { -<<<<<<< HEAD - "slug": "hello-world", - "name": "Hello World", - "uuid": "f77dc7e3-35a8-4300-a7c8-2c1765e9644d", - "practices": [ - "basics" - ], - "prerequisites": [], - "difficulty": 1 - }, - { - "slug": "two-fer", - "name": "Two Fer", - "uuid": "74515d45-565b-4be2-96c4-77e58efa9257", - "practices": [ - "strings", - "if-else-statements" - ], - "prerequisites": [ - "strings", - "if-else-statements" - ], - "difficulty": 1 - }, - { - "slug": "hamming", - "name": "Hamming", - "uuid": "ce899ca6-9cc7-47ba-b76f-1bbcf2630b76", - "practices": [ - "for-loops" - ], - "prerequisites": [ - "for-loops" - ], - "difficulty": 3 - }, - { - "slug": "gigasecond", - "name": "Gigasecond", - "uuid": "bf1641c8-dc0d-4d38-9cfe-b4c132ea3553", - "practices": [ - "datetime" - ], - "prerequisites": [ - "datetime", - "numbers" - ], - "difficulty": 3 - }, - { - "slug": "scrabble-score", - "name": "Scrabble Score", - "uuid": "afae9f2d-8baf-4bd7-8d7c-d486337f7c97", - "practices": [ - "arrays", - "switch-statement", - "chars" - ], - "prerequisites": [ - "arrays", - "switch-statement", - "chars" - ], - "difficulty": 3 - }, - { - "slug": "difference-of-squares", - "name": "Difference of Squares", - "uuid": "b0da59c6-1b55-405c-b163-007ebf09f5e8", - "practices": [ - "numbers" - ], - "prerequisites": [ - "numbers" - ], - "difficulty": 3 - }, - { - "slug": "secret-handshake", - "name": "Secret Handshake", - "uuid": "71c7c174-7e2c-43c2-bdd6-7515fcb12a91", - "practices": [ - "lists", - "enums" - ], - "prerequisites": [ - "enums", - "lists" - ], - "difficulty": 3 - }, - { - "slug": "matrix", - "name": "Matrix", - "uuid": "c1d4e0b4-6a0f-4be9-8222-345966621f53", - "practices": [ - "constructors", - "arrays" - ], - "prerequisites": [ - "constructors", - "arrays" - ], - "difficulty": 4 - }, - { - "slug": "triangle", - "name": "Triangle", - "uuid": "ec268d8e-997b-4553-8c67-8bdfa1ecb888", - "practices": [ - "constructors" - ], - "prerequisites": [ - "constructors" - ], - "difficulty": 4 - }, - { - "slug": "rotational-cipher", - "name": "Rotational Cipher", - "uuid": "9eb41883-55ef-4681-b5ac-5c2259302772", - "practices": [ - "chars" - ], - "prerequisites": [ - "chars", - "if-else-statements", - "for-loops" - ], - "difficulty": 4 - }, - { - "slug": "saddle-points", - "name": "Saddle Points", - "uuid": "8dfc2f0d-1141-46e9-95e2-6f35ccf6f160", - "practices": [ - "lists" - ], - "prerequisites": [ - "lists" - ], - "difficulty": 4 - }, - { - "slug": "flatten-array", - "name": "Flatten Array", - "uuid": "a732a838-8170-458a-a85e-d6b4c46f97a1", - "practices": [ - "lists", - "generic-types" - ], - "prerequisites": [ - "lists", - "generic-types" - ], - "difficulty": 5 - }, - { - "slug": "word-count", - "name": "Word Count", - "uuid": "3603b770-87a5-4758-91f3-b4d1f9075bc1", - "practices": [ - "strings", - "maps" - ], - "prerequisites": [ - "for-loops", - "arrays", - "maps" - ], - "difficulty": 5 - }, - { - "slug": "robot-name", - "name": "Robot Name", - "uuid": "d7c2eed9-64c7-4c4a-b45d-c787d460337f", - "practices": [ - "randomness" - ], - "prerequisites": [ - "constructors", - "classes", - "randomness" - ], - "difficulty": 5 - }, - { - "slug": "binary-search", - "name": "Binary Search", - "uuid": "50136dc3-caf7-4fa1-b7bd-0cba1bea9176", - "practices": [ - "lists" - ], - "prerequisites": [ - "lists" - ], - "difficulty": 6 - }, - { - "slug": "bank-account", - "name": "Bank Account", - "uuid": "a242efc5-159d-492b-861d-12a1459fb334", - "practices": [ - "constructors", - "classes" - ], - "prerequisites": [ - "constructors" - ], - "difficulty": 6 - }, - { - "slug": "linked-list", - "name": "Linked List", - "uuid": "7ba5084d-3b75-4406-a0d7-87c26387f9c0", - "practices": [ - "lists", - "classes", - "generic-types" - ], - "prerequisites": [ - "lists", - "classes", - "generic-types" - ], - "difficulty": 6 - }, - { - "slug": "raindrops", - "name": "Raindrops", - "uuid": "d916e4f8-fda1-41c0-ab24-79e8fc3f1272", - "practices": [ - "if-else-statements", - "numbers", - "strings" - ], - "prerequisites": [ - "if-else-statements", - "numbers", - "strings" - ], - "difficulty": 3 - }, - { - "slug": "isogram", - "name": "Isogram", - "uuid": "c3e89c7c-3a8a-4ddc-b653-9b0ff9e1d7d8", - "practices": [ - "if-else-statements", - "for-loops", - "strings" - ], - "prerequisites": [ - "if-else-statements", - "for-loops", - "strings" - ], - "difficulty": 4 - }, - { - "slug": "pig-latin", - "name": "Pig Latin", - "uuid": "38bc80ae-d842-4c04-a797-48edf322504d", - "practices": [ - "arrays", - "lists", - "strings" - ], - "prerequisites": [ - "arrays", - "lists", - "strings" - ], - "difficulty": 5 - }, - { - "slug": "anagram", - "name": "Anagram", - "uuid": "fb10dc2f-0ba1-44b6-8365-5e48e86d1283", - "practices": [ - "arrays", - "if-else-statements", - "lists", - "for-loops" - ], - "prerequisites": [ - "arrays", - "if-else-statements", - "lists", - "for-loops" - ], - "difficulty": 7 - }, - { - "slug": "reverse-string", - "name": "Reverse String", - "uuid": "2c8afeed-480e-41f3-ad58-590fa8f88029", - "practices": [ - "strings", - "chars" - ], - "prerequisites": [ - "chars" - ], - "difficulty": 1 - }, - { - "slug": "darts", - "name": "Darts", - "uuid": "4d400a44-b190-4a0c-affb-99fad8ea18da", - "practices": [ - "if-else-statements", - "constructors" - ], - "prerequisites": [ - "if-else-statements", - "constructors" - ], - "difficulty": 2 - }, - { - "slug": "dnd-character", - "name": "D&D Character", - "uuid": "09bb515c-0270-4d34-8d56-89ee04588494", - "practices": [ - "arrays", - "constructors", - "randomness" - ], - "prerequisites": [ - "arrays", - "constructors", - "randomness" - ], - "difficulty": 2 - }, - { - "slug": "grains", - "name": "Grains", - "uuid": "5ee66f39-5e37-4907-a6d9-f55d38324c6c", - "practices": [ - "numbers" - ], - "prerequisites": [ - "if-else-statements", - "numbers" - ], - "difficulty": 2 - }, - { - "slug": "resistor-color", - "name": "Resistor Color", - "uuid": "e5e821ed-fc1f-4419-9c90-ad4a0b564bea", - "practices": [ - "arrays" - ], - "prerequisites": [ - "arrays" - ], - "difficulty": 2 - }, - { - "slug": "resistor-color-duo", - "name": "Resistor Color Duo", - "uuid": "0ae1989d-df46-414d-ad1f-4bd0f0f78421", - "practices": [ - "arrays", - "enums" - ], - "prerequisites": [ - "arrays", - "enums" - ], - "difficulty": 2 - }, - { - "slug": "micro-blog", - "name": "Micro Blog", - "uuid": "8295ae71-5c0e-49d0-bbe9-9b43a85bf2dd", - "practices": [ - "strings" - ], - "prerequisites": [ - "strings" - ], - "difficulty": 3 - }, - { - "slug": "protein-translation", - "name": "Protein Translation", - "uuid": "331073b3-bd1a-4868-b767-a64ce9fd9d97", - "practices": [ - "arrays" - ], - "prerequisites": [ - "arrays", - "strings" - ], - "difficulty": 3 - }, - { - "slug": "diamond", - "name": "Diamond", - "uuid": "ecbd997b-86f4-4e11-9ff0-706ac2899415", - "practices": [ - "for-loops", - "lists" - ], - "prerequisites": [ - "lists" - ], - "difficulty": 4 - }, - { - "slug": "proverb", - "name": "Proverb", - "uuid": "9906491b-a638-408d-86a4-4ad320a92658", - "practices": [ - "strings" - ], - "prerequisites": [ - "for-loops", - "arrays" - ], - "difficulty": 4 - }, - { - "slug": "twelve-days", - "name": "Twelve Days", - "uuid": "581afdbb-dfb6-4dc5-9554-a025b5469a3c", - "practices": [ - "strings" - ], - "prerequisites": [ - "for-loops", - "arrays" - ], - "difficulty": 4 - }, - { - "slug": "bob", - "name": "Bob", - "uuid": "34cd328c-cd96-492b-abd4-2b8716cdcd9a", - "practices": [ - "if-else-statements" - ], - "prerequisites": [ - "if-else-statements", - "strings" - ], - "difficulty": 5 - }, - { - "slug": "beer-song", - "name": "Beer Song", - "uuid": "56943095-de76-40bf-b42b-fa3e70f8df5e", - "practices": [], - "prerequisites": [], - "difficulty": 6, - "status": "deprecated" - }, - { - "slug": "bottle-song", - "name": "Bottle Song", - "uuid": "3fa6750f-cf01-4542-a494-df9a8c658733", - "practices": [ - "strings" - ], - "prerequisites": [ - "strings" - ], - "difficulty": 6 - }, - { - "slug": "food-chain", - "name": "Food Chain", - "uuid": "dd3e6fd6-5359-4978-acd7-c39374cead4d", - "practices": [ - "arrays" - ], - "prerequisites": [ - "arrays" - ], - "difficulty": 6 - }, - { - "slug": "house", - "name": "House", - "uuid": "6b51aca3-3451-4a64-ad7b-00b151d7548a", - "practices": [ - "strings", - "for-loops" - ], - "prerequisites": [ - "strings", - "for-loops" - ], - "difficulty": 6 - }, - { - "slug": "isbn-verifier", - "name": "ISBN Verifier", - "uuid": "838bc1d7-b2de-482a-9bfc-c881b4ccb04c", - "practices": [ - "strings" - ], - "prerequisites": [ - "chars", - "for-loops" - ], - "difficulty": 4 - }, - { - "slug": "largest-series-product", - "name": "Largest Series Product", - "uuid": "b7310b6e-435c-4d5f-b2bd-31e586d0f238", - "practices": [ - "strings" - ], - "prerequisites": [ - "chars", - "numbers", - "for-loops" - ], - "difficulty": 4 - }, - { - "slug": "luhn", - "name": "Luhn", - "uuid": "5227a76c-8ecb-4e5f-b023-6af65a057c41", - "practices": [ - "strings" - ], - "prerequisites": [ - "numbers", - "for-loops" - ], - "difficulty": 4 - }, - { - "slug": "knapsack", - "name": "Knapsack", - "uuid": "89a6bf1e-66d5-4e39-9bc0-294b8b76cb2a", - "practices": [ - "arrays", - "lists" - ], - "prerequisites": [ - "lists" - ], - "difficulty": 5 - }, - { - "slug": "nucleotide-count", - "name": "Nucleotide Count", - "uuid": "2d80fdfc-5bd7-4b67-9fbe-8ab820d89051", - "practices": [ - "strings", - "maps" - ], - "prerequisites": [ - "if-else-statements", - "for-loops", - "maps" - ], - "difficulty": 5 - }, - { - "slug": "phone-number", - "name": "Phone Number", - "uuid": "5f9139e7-9fbb-496a-a0d7-a946283033de", - "practices": [ - "strings" - ], - "prerequisites": [ - "chars", - "if-else-statements" - ], - "difficulty": 5 - }, - { - "slug": "series", - "name": "Series", - "uuid": "af80d7f4-c7d0-4d0b-9c30-09da120f6bb9", - "practices": [ - "for-loops", - "lists" - ], - "prerequisites": [ - "lists", - "strings" - ], - "difficulty": 5 - }, - { - "slug": "roman-numerals", - "name": "Roman Numerals", - "uuid": "3e728cd4-5e5f-4c69-8a53-bc36d020fcdb", - "practices": [ - "numbers" - ], - "prerequisites": [ - "numbers", - "strings" - ], - "difficulty": 6 - }, - { - "slug": "allergies", - "name": "Allergies", - "uuid": "6a617ddb-04e3-451c-bb30-27ccd0be9125", - "practices": [ - "classes", - "enums", - "for-loops", - "lists" - ], - "prerequisites": [ - "for-loops", - "enums" - ], - "difficulty": 5 - }, - { - "slug": "meetup", - "name": "Meetup", - "uuid": "602511d5-7e89-4def-b072-4dd311816810", - "practices": [ - "datetime", - "enums" - ], - "prerequisites": [ - "datetime", - "enums" - ], - "difficulty": 7 - }, - { - "slug": "yacht", - "name": "Yacht", - "uuid": "0cb45688-9598-49aa-accc-ed48c5d6962d", - "practices": [ - "arrays", - "enums", - "switch-statement" - ], - "prerequisites": [ - "enums" - ], - "difficulty": 4 - }, - { - "slug": "bowling", - "name": "Bowling", - "uuid": "4b3f7771-c642-4278-a3d9-2fb958f26361", - "practices": [ - "classes" - ], - "prerequisites": [ - "for-loops", - "arrays" - ], - "difficulty": 6 - }, - { - "slug": "minesweeper", - "name": "Minesweeper", - "uuid": "416a1489-12af-4593-8540-0f55285c96b4", - "practices": [ - "constructors", - "lists" - ], - "prerequisites": [ - "constructors", - "lists", - "strings" - ], - "difficulty": 6 - }, - { - "slug": "queen-attack", - "name": "Queen Attack", - "uuid": "5404109e-3ed9-4691-8eaf-af8b36024a44", - "practices": [ - "constructors", - "classes", - "exceptions", - "if-else-statements" - ], - "prerequisites": [ - "constructors", - "exceptions" - ], - "difficulty": 6 - }, - { - "slug": "dominoes", - "name": "Dominoes", - "uuid": "8e3cb20e-623b-4b4d-8a91-d1a51c0911b5", - "practices": [ - "classes", - "exceptions", - "lists" - ], - "prerequisites": [ - "exceptions", - "lists" - ], - "difficulty": 7 - }, - { - "slug": "go-counting", - "name": "Go Counting", - "uuid": "2e760ae2-fadd-4d31-9639-c4554e2826e9", - "practices": [ - "if-else-statements", - "for-loops", - "enums", - "maps" - ], - "prerequisites": [ - "enums", - "maps" - ], - "difficulty": 7 - }, - { - "slug": "markdown", - "name": "Markdown", - "uuid": "cc18f2e5-4e36-47d6-aa60-8ca5ff54019a", - "practices": [ - "if-else-statements", - "strings" - ], - "prerequisites": [ - "if-else-statements", - "strings" - ], - "difficulty": 7 - }, - { - "slug": "poker", - "name": "Poker", - "uuid": "57eeac00-741c-4843-907a-51f0ac5ea4cb", - "practices": [ - "constructors", - "classes", - "if-else-statements", - "lists" - ], - "prerequisites": [ - "constructors", - "if-else-statements", - "lists" - ], - "difficulty": 7 - }, - { - "slug": "word-search", - "name": "Word Search", - "uuid": "b53bde52-cb5f-4d43-86ec-18aa509d62f9", - "practices": [ - "arrays", - "strings", - "if-else-statements", - "maps" - ], - "prerequisites": [ - "arrays", - "strings", - "if-else-statements", - "maps" - ], - "difficulty": 7 - }, - { - "slug": "perfect-numbers", - "name": "Perfect Numbers", - "uuid": "d0dcc898-ec38-4822-9e3c-1a1829c9b2d9", - "practices": [ - "enums", - "exceptions", - "numbers" - ], - "prerequisites": [ - "enums", - "exceptions" - ], - "difficulty": 3 - }, - { - "slug": "say", - "name": "Say", - "uuid": "3c76a983-e689-4d82-8f1b-6d52f3c5434c", - "practices": [ - "numbers", - "strings" - ], - "prerequisites": [ - "numbers", - "strings" - ], - "difficulty": 3 - }, - { - "slug": "sieve", - "name": "Sieve", - "uuid": "6791d01f-bae4-4b63-ae76-86529ac49e36", - "practices": [ - "lists", - "numbers" - ], - "prerequisites": [ - "lists", - "numbers" - ], - "difficulty": 4 - }, - { - "slug": "sum-of-multiples", - "name": "Sum of Multiples", - "uuid": "2f244afc-3e7b-4f89-92af-e2b427f4ef35", - "practices": [ - "numbers", - "if-else-statements" - ], - "prerequisites": [ - "arrays", - "if-else-statements", - "numbers" - ], - "difficulty": 4 - }, - { - "slug": "variable-length-quantity", - "name": "Variable Length Quantity", - "uuid": "d8a2c7ba-2040-4cfe-ab15-f90b3b61dd89", - "practices": [ - "exceptions", - "if-else-statements", - "lists", - "numbers" - ], - "prerequisites": [ - "exceptions" - ], - "difficulty": 4 - }, - { - "slug": "alphametics", - "name": "Alphametics", - "uuid": "0639a1f8-5af4-4877-95c1-5db8e97c30bf", - "practices": [ - "chars", - "if-else-statements", - "exceptions", - "numbers" - ], - "prerequisites": [ - "chars", - "exceptions" - ], - "difficulty": 6 - }, - { - "slug": "robot-simulator", - "name": "Robot Simulator", - "uuid": "993bde9d-7774-4e7a-a381-9eee75f28ecb", - "practices": [ - "classes", - "enums", - "for-loops" - ], - "prerequisites": [ - "enums" - ], - "difficulty": 6 - }, - { - "slug": "wordy", - "name": "Wordy", - "uuid": "3310a3cd-c0cb-45fa-8c51-600178be904a", - "practices": [ - "exceptions", - "strings" - ], - "prerequisites": [ - "exceptions", - "numbers", - "strings" - ], - "difficulty": 6 - }, - { - "slug": "forth", - "name": "Forth", - "uuid": "f0c0316d-3fb5-455e-952a-91161e7fb298", - "practices": [ - "exceptions", - "strings" - ], - "prerequisites": [ - "exceptions", - "lists", - "strings" - ], - "difficulty": 9 - }, - { - "slug": "killer-sudoku-helper", - "name": "Killer Sudoku Helper", - "uuid": "8c45a47d-b3e3-484c-a124-90136ec838fd", - "practices": [ - "for-loops", - "if-else-statements", - "numbers", - "lists" - ], - "prerequisites": [ - "numbers", - "lists" - ], - "difficulty": 4 - }, - { - "slug": "kindergarten-garden", - "name": "Kindergarten Garden", - "uuid": "df41c70c-daa1-4380-9729-638c17b4105d", - "practices": [ - "arrays", - "enums", - "for-loops", - "lists", - "strings" - ], - "prerequisites": [ - "enums", - "lists" - ], - "difficulty": 4 - }, - { - "slug": "pascals-triangle", - "name": "Pascal's Triangle", - "uuid": "d2a76905-1c8c-4b03-b4f7-4fbff19329f3", - "practices": [ - "arrays", - "numbers" - ], - "prerequisites": [ - "arrays", - "exceptions", - "numbers" - ], - "difficulty": 5 - }, - { - "slug": "spiral-matrix", - "name": "Spiral Matrix", - "uuid": "163fcc6b-c054-4232-a88b-0aded846a6eb", - "practices": [ - "arrays", - "for-loops" - ], - "prerequisites": [ - "for-loops", - "numbers" - ], - "difficulty": 6 - }, - { - "slug": "tournament", - "name": "Tournament", - "uuid": "486d342e-c834-40fc-b691-a4dab3f790da", - "practices": [ - "strings" - ], - "prerequisites": [ - "strings" - ], - "difficulty": 6 - }, - { - "slug": "transpose", - "name": "Transpose", - "uuid": "57b76837-4610-466f-9373-d5c2697625f1", - "practices": [ - "for-loops", - "lists" - ], - "prerequisites": [ - "for-loops", - "lists", - "strings" - ], - "difficulty": 6 - }, - { - "slug": "collatz-conjecture", - "name": "Collatz Conjecture", - "uuid": "1500d39a-c9d9-4d3a-9e77-fdc1837fc6ad", - "practices": [ - "if-else-statements", - "numbers" - ], - "prerequisites": [ - "exceptions", - "if-else-statements", - "numbers" - ], - "difficulty": 4 - }, - { - "slug": "error-handling", - "name": "Error Handling", - "uuid": "846ae792-7ca7-43e1-b523-bb1ec9fa08eb", - "practices": [ - "exceptions" - ], - "prerequisites": [ - "exceptions" - ], - "difficulty": 4 - }, - { - "slug": "nth-prime", - "name": "Nth Prime", - "uuid": "2c69db99-648d-4bd7-8012-1fbdeff6ca0a", - "practices": [ - "numbers" - ], - "prerequisites": [ - "exceptions", - "for-loops", - "if-else-statements", - "numbers" - ], - "difficulty": 4 - }, - { - "slug": "prime-factors", - "name": "Prime Factors", - "uuid": "599c08ec-7338-46ed-99f8-a76f78f724e6", - "practices": [ - "numbers" - ], - "prerequisites": [ - "if-else-statements", - "lists", - "numbers" - ], - "difficulty": 5 - }, - { - "slug": "two-bucket", - "name": "Two Bucket", - "uuid": "210bf628-b385-443b-8329-3483cc6e8d7e", - "practices": [ - "constructors", - "numbers" - ], - "prerequisites": [ - "constructors", - "if-else-statements", - "numbers" - ], - "difficulty": 7 - }, - { - "slug": "complex-numbers", - "name": "Complex Numbers", - "uuid": "52d11278-0d65-4b5b-b387-1374fced3243", - "practices": [ - "numbers" - ], - "prerequisites": [ - "numbers" - ], - "difficulty": 8 - }, - { - "slug": "rational-numbers", - "name": "Rational Numbers", - "uuid": "50ed54ce-3047-4590-9fda-0a7e9aeeba30", - "practices": [ - "numbers" - ], - "prerequisites": [ - "numbers" - ], - "difficulty": 8 - }, - { - "slug": "pythagorean-triplet", - "name": "Pythagorean Triplet", - "uuid": "88505f95-89e5-4a08-8ed2-208eb818cdf1", - "practices": [ - "numbers" - ], - "prerequisites": [ - "constructors", - "lists", - "numbers" - ], - "difficulty": 9 - }, - { - "slug": "atbash-cipher", - "name": "Atbash Cipher", - "uuid": "d36ce010-210f-4e9a-9d6c-cb933e0a59af", - "practices": [ - "chars", - "foreach-loops" - ], - "prerequisites": [ - "chars", - "foreach-loops" - ], - "difficulty": 5 - }, - { - "slug": "run-length-encoding", - "name": "Run-Length Encoding", - "uuid": "4499a3f9-73a7-48bf-8753-d5b6abf588c9", - "practices": [ - "chars", - "for-loops" - ], - "prerequisites": [ - "chars", - "if-else-statements", - "for-loops" - ], - "difficulty": 5 - }, - { - "slug": "affine-cipher", - "name": "Affine Cipher", - "uuid": "e6e3faaf-54c2-4782-93af-bb8d95403f2a", - "practices": [ - "chars" - ], - "prerequisites": [ - "chars", - "exceptions", - "for-loops", - "if-else-statements", - "numbers" - ], - "difficulty": 6 - }, - { - "slug": "rail-fence-cipher", - "name": "Rail Fence Cipher", - "uuid": "6e4ad4ed-cc02-4132-973d-b9163ba0ea3d", - "practices": [ - "chars", - "foreach-loops" - ], - "prerequisites": [ - "arrays", - "chars", - "foreach-loops", - "if-else-statements" - ], - "difficulty": 6 - }, - { - "slug": "crypto-square", - "name": "Crypto Square", - "uuid": "162bebdc-9bf2-43c0-8460-a91f5fc16147", - "practices": [ - "chars", - "for-loops" - ], - "prerequisites": [ - "chars", - "constructors", - "for-loops", - "if-else-statements", - "numbers" - ], - "difficulty": 7 - }, - { - "slug": "simple-cipher", - "name": "Simple Cipher", - "uuid": "f654831f-c34b-44f5-9dd5-054efbb486f2", - "practices": [ - "chars", - "for-loops", - "randomness" - ], - "prerequisites": [ - "chars", - "exceptions", - "for-loops", - "if-else-statements", - "numbers", - "randomness" - ], - "difficulty": 8 - }, - { - "slug": "all-your-base", - "name": "All Your Base", - "uuid": "f7c2e4b5-1995-4dfe-b827-c9aff8ac5332", - "practices": [ - "arrays", - "numbers" - ], - "prerequisites": [ - "arrays", - "exceptions", - "for-loops", - "if-else-statements", - "numbers" - ], - "difficulty": 6 - }, - { - "slug": "clock", - "name": "Clock", - "uuid": "97c8fcd4-85b6-41cb-9de2-b4e1b4951222", - "practices": [ - "constructors", - "numbers" - ], - "prerequisites": [ - "constructors", - "if-else-statements", - "numbers", - "strings" - ], - "difficulty": 7 - }, - { - "slug": "zebra-puzzle", - "name": "Zebra Puzzle", - "uuid": "b1e2bd39-3f4b-44c1-b7e2-258d4ee241f8", - "practices": [], - "prerequisites": [], - "difficulty": 7 - }, - { - "slug": "palindrome-products", - "name": "Palindrome Products", - "uuid": "873c05de-b5f5-4c5b-97f0-d1ede8a82832", - "practices": [ - "for-loops", - "numbers", - "maps" - ], - "prerequisites": [ - "exceptions", - "for-loops", - "if-else-statements", - "numbers", - "maps" - ], - "difficulty": 8 - }, - { - "slug": "matching-brackets", - "name": "Matching Brackets", - "uuid": "85aa50ac-0141-49eb-bc6f-62f3f7a97647", - "practices": [ - "foreach-loops", - "strings" - ], - "prerequisites": [ - "foreach-loops", - "strings" - ], - "difficulty": 5 - }, - { - "slug": "book-store", - "name": "Book Store", - "uuid": "e5f05d00-fe5b-4d78-b2fa-934c1c9afb32", - "practices": [ - "lists", - "numbers" - ], - "prerequisites": [ - "exceptions", - "if-else-statements", - "lists", - "numbers" - ], - "difficulty": 8 - }, - { - "slug": "change", - "name": "Change", - "uuid": "bac1f4bc-eea9-43c1-8e95-097347f5925e", - "practices": [ - "numbers", - "for-loops" - ], - "prerequisites": [ - "exceptions", - "lists", - "numbers" - ], - "difficulty": 8 - }, - { - "slug": "etl", - "name": "ETL", - "uuid": "76d28d97-75d3-47eb-bb77-3d347b76f1b6", - "practices": [ - "foreach-loops" - ], - "prerequisites": [ - "foreach-loops", - "strings" - ], - "difficulty": 6 - }, - { - "slug": "grade-school", - "name": "Grade School", - "uuid": "b4af5da1-601f-4b0f-bfb8-4a381851090c", - "practices": [ - "lists" - ], - "prerequisites": [ - "if-else-statements", - "lists", - "strings" - ], - "difficulty": 6 - }, - { - "slug": "grep", - "name": "Grep", - "uuid": "9c15ddab-7b52-43d4-b38c-0bf635b363c3", - "practices": [ - "booleans", - "strings" - ], - "prerequisites": [ - "lists", - "strings" - ], - "difficulty": 5 - }, - { - "slug": "rest-api", - "name": "REST API", - "uuid": "809c0e3d-3494-4a85-843d-2bafa8752ce8", - "practices": [ - "classes", - "constructors" - ], - "prerequisites": [ - "classes", - "constructors", - "lists" - ], - "difficulty": 6 - }, - { - "slug": "ocr-numbers", - "name": "OCR Numbers", - "uuid": "5cbc6a67-3a53-4aad-ae68-ff469525437f", - "practices": [ - "strings" - ], - "prerequisites": [ - "exceptions", - "lists", - "strings" - ], - "difficulty": 8 - }, - { - "slug": "react", - "name": "React", - "uuid": "33531718-1d8a-4abd-bd2a-090303ad0c39", - "practices": [ - "classes", - "generic-types" - ], - "prerequisites": [ - "classes", - "generic-types" - ], - "difficulty": 8 - }, - { - "slug": "rectangles", - "name": "Rectangles", - "uuid": "64cda115-919a-4eef-9a45-9ec5d1af98cc", - "practices": [ - "arrays", - "strings" - ], - "prerequisites": [ - "arrays", - "exceptions", - "strings" - ], - "difficulty": 8 - }, - { - "slug": "binary-search-tree", - "name": "Binary Search Tree", - "uuid": "0a2d18aa-7b5e-4401-a952-b93d2060694f", - "practices": [ - "generic-types" + "slug": "wizards-and-warriors-2", + "name": "Wizards and Warriors 2", + "uuid": "752d6968-8600-426f-ad26-fa7c53cf1ac2", + "concepts": [ + "method-overloading" ], "prerequisites": [ "classes", - "generic-types", - "lists" - ], - "difficulty": 7 - }, - { - "slug": "parallel-letter-frequency", - "name": "Parallel Letter Frequency", - "uuid": "38a405e8-619d-400f-b53c-2f06461fdf9d", - "practices": [ - "strings", - "maps" - ], - "prerequisites": [ "strings", - "maps" + "enums" ], - "difficulty": 6 + "status": "active" }, { - "slug": "simple-linked-list", - "name": "Simple Linked List", - "uuid": "e3e5ffe5-cfc1-467e-a28a-da0302130144", - "practices": [ - "generic-types" + "slug": "secrets", + "name": "Secrets", + "uuid": "b6485b16-e94d-41ce-9689-d94b70266f5e", + "concepts": [ + "bit-manipulation" ], "prerequisites": [ - "constructors", - "exceptions", - "generic-types", - "lists" - ], - "difficulty": 7 + "numbers" + ] }, { - "slug": "sublist", - "name": "Sublist", - "uuid": "d2aedbd7-092a-43d0-8a5e-ae3ebd5b9c7f", - "practices": [ - "enums", - "generic-types", - "lists" + "slug": "gotta-snatch-em-all", + "name": "Gotta Snatch 'Em All", + "uuid": "a7938215-4597-4c51-8ceb-6514d5654485", + "concepts": [ + "sets" ], "prerequisites": [ - "enums", + "lists", "generic-types" ], - "difficulty": 7 - }, - { - "slug": "tree-building", - "name": "Tree Building", - "uuid": "cb9540e2-a980-4275-924e-bdb504f04363", - "practices": [ - "classes", - "exceptions" - ], - "prerequisites": [ - "classes", - "exceptions", - "if-else-statements", - "lists" - ], - "difficulty": 7 + "status": "beta" }, { - "slug": "zipper", - "name": "Zipper", - "uuid": "25d2c7a5-1ec8-464a-b3de-ad1b27464ef1", - "practices": [ - "classes" + "slug": "arcade-high-score", + "name": "Arcade High Score", + "uuid": "07893a1a-eb93-4ad2-b98e-f3946c5e7fb2", + "concepts": [ + "maps" ], "prerequisites": [ - "classes", - "constructors", - "if-else-statements", "numbers", "strings" - ], - "difficulty": 7 - }, - { - "slug": "circular-buffer", - "name": "Circular Buffer", - "uuid": "626dc25a-062c-4053-a8c1-788e4dc44ca0", - "practices": [ - "generic-types" - ], - "prerequisites": [ - "classes", - "exceptions", - "generic-types" - ], - "difficulty": 8 - }, - { - "slug": "diffie-hellman", - "name": "Diffie-Hellman", - "uuid": "bb49e929-77dc-4a61-93a1-ca55e92a55f8", - "practices": [], - "prerequisites": [], - "difficulty": 8, - "status": "deprecated" - }, - { - "slug": "hangman", - "name": "Hangman", - "uuid": "ab3f8bf4-cfae-4f7a-b134-bb0fa4fafa63", - "practices": [ - "enums", - "strings" - ], - "prerequisites": [ - "enums" - ], - "difficulty": 8 - }, - { - "slug": "list-ops", - "name": "List Ops", - "uuid": "a9836565-5c39-4285-b83a-53408be36ccc", - "practices": [ - "generic-types", - "lists" - ], - "prerequisites": [ - "generic-types", - "lists" - ], - "difficulty": 8 - }, - { - "slug": "custom-set", - "name": "Custom Set", - "uuid": "377fe38b-08ad-4f3a-8118-a43c10f7b9b2", - "practices": [ - "generic-types" - ], - "prerequisites": [ - "generic-types", - "if-else-statements" - ], - "difficulty": 10 - }, - { - "slug": "satellite", - "name": "Satellite", - "uuid": "a5f8aef3-9661-49c7-9eb3-786ef9fe0e85", - "practices": [ - "classes" - ], - "prerequisites": [ - "classes", - "lists" - ], - "difficulty": 10 - }, + ] + } + ], + "practice": [ { -======= ->>>>>>> main "slug": "accumulate", "name": "Accumulate", "uuid": "e58c29d2-80a7-40ef-bed0-4a184ae35f34", @@ -3043,7 +1467,9 @@ "slug": "poker", "name": "Poker", "uuid": "57eeac00-741c-4843-907a-51f0ac5ea4cb", - "practices": [], + "practices": [ + "maps" + ], "prerequisites": [ "constructors", "if-else-statements", @@ -3055,9 +1481,7 @@ "slug": "sgf-parsing", "name": "SGF Parsing", "uuid": "0d6325d1-c0a3-456e-9a92-cea0559e82ed", - "practices": [ - "maps" - ], + "practices": [], "prerequisites": [ "strings", "chars", @@ -3518,55 +1942,54 @@ "uuid": "5a10c26d-1f8a-46d3-ab85-686235000f0e", "slug": "maps", "name": "Maps" + ], + "key_features": [ + { + "title": "Modern", + "content": "Java is a modern, fast-evolving language with releases every 6 months.", + "icon": "evolving" + }, + { + "title": "Statically-typed", + "content": "Every expression has a type known at compile time.", + "icon": "statically-typed" + }, + { + "title": "Multi-paradigm", + "content": "Java is primarily an object-oriented language, but has many functional features introduced in v1.8.", + "icon": "multi-paradigm" + }, + { + "title": "General purpose", + "content": "Java is used for a variety of workloads like web, cloud, mobile and game applications.", + "icon": "general-purpose" + }, + { + "title": "Portable", + "content": "Java was designed to be cross-platform with the slogan \"Write once, run anywhere\".", + "icon": "portable" + }, + { + "title": "Garbage Collection", + "content": "Java programs perform automatic memory management for their lifecycles.", + "icon": "garbage-collected" + } + ], + "tags": [ + "execution_mode/compiled", + "paradigm/functional", + "paradigm/imperative", + "paradigm/object_oriented", + "platform/android", + "platform/linux", + "platform/mac", + "platform/windows", + "runtime/jvm", + "typing/static", + "used_for/artificial_intelligence", + "used_for/backends", + "used_for/cross_platform_development", + "used_for/games", + "used_for/mobile" + ] } - ], - "key_features": [ - { - "title": "Modern", - "content": "Java is a modern, fast-evolving language with releases every 6 months.", - "icon": "evolving" - }, - { - "title": "Statically-typed", - "content": "Every expression has a type known at compile time.", - "icon": "statically-typed" - }, - { - "title": "Multi-paradigm", - "content": "Java is primarily an object-oriented language, but has many functional features introduced in v1.8.", - "icon": "multi-paradigm" - }, - { - "title": "General purpose", - "content": "Java is used for a variety of workloads like web, cloud, mobile and game applications.", - "icon": "general-purpose" - }, - { - "title": "Portable", - "content": "Java was designed to be cross-platform with the slogan \"Write once, run anywhere\".", - "icon": "portable" - }, - { - "title": "Garbage Collection", - "content": "Java programs perform automatic memory management for their lifecycles.", - "icon": "garbage-collected" - } - ], - "tags": [ - "execution_mode/compiled", - "paradigm/functional", - "paradigm/imperative", - "paradigm/object_oriented", - "platform/android", - "platform/linux", - "platform/mac", - "platform/windows", - "runtime/jvm", - "typing/static", - "used_for/artificial_intelligence", - "used_for/backends", - "used_for/cross_platform_development", - "used_for/games", - "used_for/mobile" - ] -} From 74d9152f62ebfc37d0097c1dc391e9a9e13945ab Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Tue, 30 Apr 2024 18:44:12 +0100 Subject: [PATCH 12/16] lint errors resolved --- concepts/maps/introduction.md | 3 --- config.json | 3 ++- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/concepts/maps/introduction.md b/concepts/maps/introduction.md index 936105dfd..9fcb21ecd 100644 --- a/concepts/maps/introduction.md +++ b/concepts/maps/introduction.md @@ -27,19 +27,16 @@ Map hashmap = new HashMap<>(); hashmap.put(String key, Integer value) ``` - ## Retrieving values from a Map The [get][get] method is used to retrieve values from a map. Only one argument is passed to this method which is the key of the map entry you want to retrieve. - ```java Map hashmap = new HashMap<>(); hashmap.get(String key) ``` - [maps]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html [reference-data-types]: https://docs.oracle.com/javase/specs/jls/se7/html/jls-4.html#jls-4.3 [start-of-map-functions]: https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#size-- diff --git a/config.json b/config.json index 104f75770..f53a6806b 100644 --- a/config.json +++ b/config.json @@ -1942,7 +1942,8 @@ "uuid": "5a10c26d-1f8a-46d3-ab85-686235000f0e", "slug": "maps", "name": "Maps" - ], + } + ], "key_features": [ { "title": "Modern", From f3cafdba24e1424d2353aa14d91059997ccb4602 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Tue, 30 Apr 2024 18:51:04 +0100 Subject: [PATCH 13/16] removing _template --- _template/gradle/wrapper/gradle-wrapper.jar | Bin 59821 -> 0 bytes .../gradle/wrapper/gradle-wrapper.properties | 5 - _template/gradlew | 234 ------------------ _template/gradlew.bat | 89 ------- 4 files changed, 328 deletions(-) delete mode 100644 _template/gradle/wrapper/gradle-wrapper.jar delete mode 100644 _template/gradle/wrapper/gradle-wrapper.properties delete mode 100644 _template/gradlew delete mode 100644 _template/gradlew.bat diff --git a/_template/gradle/wrapper/gradle-wrapper.jar b/_template/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 41d9927a4d4fb3f96a785543079b8df6723c946b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 59821 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 diff --git a/_template/gradle/wrapper/gradle-wrapper.properties b/_template/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 41dfb8790..000000000 --- a/_template/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/_template/gradlew b/_template/gradlew deleted file mode 100644 index 1b6c78733..000000000 --- a/_template/gradlew +++ /dev/null @@ -1,234 +0,0 @@ -#!/bin/sh - -# -# Copyright © 2015-2021 the original authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -# -# Gradle start up script for POSIX generated by Gradle. -# -# Important for running: -# -# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is -# noncompliant, but you have some other compliant shell such as ksh or -# bash, then to run this script, type that shell name before the whole -# command line, like: -# -# ksh Gradle -# -# Busybox and similar reduced shells will NOT work, because this script -# requires all of these POSIX shell features: -# * functions; -# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», -# «${var#prefix}», «${var%suffix}», and «$( cmd )»; -# * compound commands having a testable exit status, especially «case»; -# * various built-in commands including «command», «set», and «ulimit». -# -# Important for patching: -# -# (2) This script targets any POSIX shell, so it avoids extensions provided -# by Bash, Ksh, etc; in particular arrays are avoided. -# -# The "traditional" practice of packing multiple parameters into a -# space-separated string is a well documented source of bugs and security -# problems, so this is (mostly) avoided, by progressively accumulating -# options in "$@", and eventually passing that to Java. -# -# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, -# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; -# see the in-line comments for details. -# -# There are tweaks for specific operating systems such as AIX, CygWin, -# Darwin, MinGW, and NonStop. -# -# (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt -# within the Gradle project. -# -# You can find Gradle at https://github.com/gradle/gradle/. -# -############################################################################## - -# Attempt to set APP_HOME - -# Resolve links: $0 may be a link -app_path=$0 - -# Need this for daisy-chained symlinks. -while - APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path - [ -h "$app_path" ] -do - ls=$( ls -ld "$app_path" ) - link=${ls#*' -> '} - case $link in #( - /*) app_path=$link ;; #( - *) app_path=$APP_HOME$link ;; - esac -done - -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" -APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD=maximum - -warn () { - echo "$*" -} >&2 - -die () { - echo - echo "$*" - echo - exit 1 -} >&2 - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "$( uname )" in #( - CYGWIN* ) cygwin=true ;; #( - Darwin* ) darwin=true ;; #( - MSYS* | MINGW* ) msys=true ;; #( - NONSTOP* ) nonstop=true ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD=$JAVA_HOME/jre/sh/java - else - JAVACMD=$JAVA_HOME/bin/java - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then - case $MAX_FD in #( - max*) - MAX_FD=$( ulimit -H -n ) || - warn "Could not query maximum file descriptor limit" - esac - case $MAX_FD in #( - '' | soft) :;; #( - *) - ulimit -n "$MAX_FD" || - warn "Could not set maximum file descriptor limit to $MAX_FD" - esac -fi - -# Collect all arguments for the java command, stacking in reverse order: -# * args from the command line -# * the main class name -# * -classpath -# * -D...appname settings -# * --module-path (only if needed) -# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. - -# For Cygwin or MSYS, switch paths to Windows format before running java -if "$cygwin" || "$msys" ; then - APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) - CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) - - JAVACMD=$( cygpath --unix "$JAVACMD" ) - - # Now convert the arguments - kludge to limit ourselves to /bin/sh - for arg do - if - case $arg in #( - -*) false ;; # don't mess with options #( - /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath - [ -e "$t" ] ;; #( - *) false ;; - esac - then - arg=$( cygpath --path --ignore --mixed "$arg" ) - fi - # Roll the args list around exactly as many times as the number of - # args, so each arg winds up back in the position where it started, but - # possibly modified. - # - # NB: a `for` loop captures its iteration list before it begins, so - # changing the positional parameters here affects neither the number of - # iterations, nor the values presented in `arg`. - shift # remove old arg - set -- "$@" "$arg" # push replacement arg - done -fi - -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. - -set -- \ - "-Dorg.gradle.appname=$APP_BASE_NAME" \ - -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ - "$@" - -# Use "xargs" to parse quoted args. -# -# With -n1 it outputs one arg per line, with the quotes and backslashes removed. -# -# In Bash we could simply go: -# -# readarray ARGS < <( xargs -n1 <<<"$var" ) && -# set -- "${ARGS[@]}" "$@" -# -# but POSIX shell has neither arrays nor command substitution, so instead we -# post-process each arg (as a line of input to sed) to backslash-escape any -# character that might be a shell metacharacter, then use eval to reverse -# that process (while maintaining the separation between arguments), and wrap -# the whole thing up as a single "set" statement. -# -# This will of course break if any of these variables contains a newline or -# an unmatched quote. -# - -eval "set -- $( - printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | - xargs -n1 | - sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | - tr '\n' ' ' - )" '"$@"' - -exec "$JAVACMD" "$@" diff --git a/_template/gradlew.bat b/_template/gradlew.bat deleted file mode 100644 index 107acd32c..000000000 --- a/_template/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega From 33bc592c32d5cc294b9c228fb6b98b4903ddaec3 Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Tue, 30 Apr 2024 19:00:19 +0100 Subject: [PATCH 14/16] Indentation issue resolved --- .../.meta/src/reference/java/ArcadeHighScore.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java index 80c054071..db2b21471 100644 --- a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java @@ -26,7 +26,7 @@ void resetScore (String name) { highScores.put(name, 0); } - void updateScore (String name, Integer score) { + void updateScore (String name, Integer score) { Integer oldScore = highScores.getOrDefault(name, 0); @@ -34,6 +34,6 @@ void updateScore (String name, Integer score) { } Set listOfPlayers () { - return highScores.keySet(); - } + return highScores.keySet(); + } } From 51903cb7389f0ebacfef6260221c98a70d2c7cfd Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Tue, 30 Apr 2024 19:14:57 +0100 Subject: [PATCH 15/16] gradle wrapper added --- .../gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43453 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 + exercises/concept/arcade-high-score/gradlew | 249 ++++++++++++++++++ .../concept/arcade-high-score/gradlew.bat | 92 +++++++ .../src/test/java/ArcadeHighScoreTest.java | 8 +- 5 files changed, 353 insertions(+), 2 deletions(-) create mode 100644 exercises/concept/arcade-high-score/gradle/wrapper/gradle-wrapper.jar create mode 100644 exercises/concept/arcade-high-score/gradle/wrapper/gradle-wrapper.properties create mode 100644 exercises/concept/arcade-high-score/gradlew create mode 100644 exercises/concept/arcade-high-score/gradlew.bat diff --git a/exercises/concept/arcade-high-score/gradle/wrapper/gradle-wrapper.jar b/exercises/concept/arcade-high-score/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..e6441136f3d4ba8a0da8d277868979cfbc8ad796 GIT binary patch literal 43453 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 yu?e%!_ptzGB|8GrCfu%p?(_ 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
NnX)EH+Nua)3Y(c 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 '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/exercises/concept/arcade-high-score/gradlew.bat b/exercises/concept/arcade-high-score/gradlew.bat new file mode 100644 index 000000000..25da30dbd --- /dev/null +++ b/exercises/concept/arcade-high-score/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java index fa43ba1a4..827ba48e6 100644 --- a/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java +++ b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java @@ -1,16 +1,20 @@ import org.assertj.core.api.Assert; +import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import static org.assertj.core.api.Assertions.assertThat; -import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; public class ArcadeHighScoreTest { - private final ArcadeHighScore arcadeHighScore = new ArcadeHighScore(); + private ArcadeHighScore arcadeHighScore; + @BeforeEach + public void setUp() { + arcadeHighScore = new ArcadeHighScore(); + } @Test @Tag("task:1") From 0a2f9da5574b7bb29092b74445ee84f3a92e03ac Mon Sep 17 00:00:00 2001 From: Sean Mc Garry Date: Tue, 30 Apr 2024 19:42:03 +0100 Subject: [PATCH 16/16] Changing define map to getHighScores --- exercises/concept/arcade-high-score/.docs/hints.md | 8 ++++---- .../.meta/src/reference/java/ArcadeHighScore.java | 2 +- .../src/main/java/ArcadeHighScore.java | 8 ++++---- .../src/test/java/ArcadeHighScoreTest.java | 11 +++++------ 4 files changed, 14 insertions(+), 15 deletions(-) diff --git a/exercises/concept/arcade-high-score/.docs/hints.md b/exercises/concept/arcade-high-score/.docs/hints.md index d706296ad..45f35668f 100644 --- a/exercises/concept/arcade-high-score/.docs/hints.md +++ b/exercises/concept/arcade-high-score/.docs/hints.md @@ -4,10 +4,10 @@ - A [map][maps] is an associative data structure of key-value pairs. -## 1. Define a new high score map +## 1. Get all Highscores -- It should return an empty [map][maps]. -- [Create an object][create-object] of the HashMap class using the declared `Map highScores`. +- It should return a [map][maps] with all the players and their scores. +- [Create an object][create-object] of the HashMap class using the declared `Map highScores` to initialise the map. ## 2. Add players to the high score map @@ -29,7 +29,7 @@ - The resulting map should be returned with the player's updated score. - One of the [built-in functions][map-get-or-default] can be used to get a value in a map under a given key if the key is present and update the value, or add the key with a default value if it is not present.. -## 6. Get a list of players +## 6. Get all players - One of the [built-in functions][map-keys] returns a set of all keys in a map. diff --git a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java index db2b21471..110eacfe4 100644 --- a/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-high-score/.meta/src/reference/java/ArcadeHighScore.java @@ -33,7 +33,7 @@ void updateScore (String name, Integer score) { highScores.put(name, oldScore + score); } - Set listOfPlayers () { + Set getPlayers () { return highScores.keySet(); } } diff --git a/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java b/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java index cbfc3623c..9e5e6ded1 100644 --- a/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java +++ b/exercises/concept/arcade-high-score/src/main/java/ArcadeHighScore.java @@ -2,11 +2,11 @@ import java.util.Map; import java.util.Set; -public class ArcadeHighScore { +class ArcadeHighScore { - Map highScores; + Map highScores = new HashMap<>(); - Map defineMap(){ + Map getHighScores(){ throw new UnsupportedOperationException("Please initialise the ArcadeHighScore.highScores map"); } @@ -26,7 +26,7 @@ Map updateScore (String name, Integer score) { throw new UnsupportedOperationException("Please implement the ArcadeHighScore.updateScore(name, score) method"); } - Set listOfPlayers () { + Set getPlayers () { throw new UnsupportedOperationException("Please implement the ArcadeHighScore.listOfPlayers() method"); } } diff --git a/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java index 827ba48e6..77c8a3d16 100644 --- a/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java +++ b/exercises/concept/arcade-high-score/src/test/java/ArcadeHighScoreTest.java @@ -1,4 +1,3 @@ -import org.assertj.core.api.Assert; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Tag; @@ -19,8 +18,8 @@ public void setUp() { @Test @Tag("task:1") @DisplayName("Define an empty map to store the high scores") - public void defineMap() { - assertNotNull(arcadeHighScore.defineMap()); + public void getHighScores() { + assertNotNull(arcadeHighScore.getHighScores()); assertThat(arcadeHighScore.highScores.isEmpty()); } @@ -94,8 +93,8 @@ public void updateScoreOfNonExistentPlayer() { @Test @Tag("task:6") - @DisplayName("Get a list of players") - public void listOfPlayers() { + @DisplayName("Get all players") + public void getPlayers() { String name = "David James"; Integer score = 67; @@ -105,6 +104,6 @@ public void listOfPlayers() { arcadeHighScore.addPlayer(name, score); arcadeHighScore.addPlayer(secondName, secondScore); - assertThat(arcadeHighScore.listOfPlayers()).contains(name).contains(secondName); + assertThat(arcadeHighScore.getPlayers()).contains(name).contains(secondName); } }