From 584952faa9daa3d55367d2598b8a3393e1df710e Mon Sep 17 00:00:00 2001 From: mepv Date: Sat, 15 Oct 2022 07:54:27 -0300 Subject: [PATCH 1/2] bobocode-projects/java-fundamentals-exercises#141 Fixed a couple of typos found in README and CONTRIBUTING files. --- 5-0-functional-programming/README.md | 4 ++-- CONTRIBUTING.MD | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/5-0-functional-programming/README.md b/5-0-functional-programming/README.md index 538cd2224..8462a7bca 100644 --- a/5-0-functional-programming/README.md +++ b/5-0-functional-programming/README.md @@ -17,7 +17,7 @@ Java SE 8+ provides a rich API that enables functional programming features base * Stream API * Optional API -### At the end of this module you will be ablte to +### At the end of this module you will be able to Write this ```java public List findAllGmailAccounts(List accounts) { @@ -40,7 +40,7 @@ public List findAllGmailAccounts(List accounts) { ``` Among other you will be able to * use **Funtional Interfaces** and **Lambdas** in order to **pass around functions** like first-class citizens ✅ -* **process data collections** in a **concise** and **easy to uderstnad** way using **Stream API** ✅ +* **process data collections** in a **concise** and **easy way to understand** using **Stream API** ✅ * write **null-safe code** using **Optional API** ✅ ### Learn or skip ? diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD index 9f4def44b..9ae61d41f 100644 --- a/CONTRIBUTING.MD +++ b/CONTRIBUTING.MD @@ -35,7 +35,7 @@ Imagine you need to add a new `methodX()` to the exercise. Here's the list of ac 4. Push the changes 5. Checkout `completed` 6. Create a local branch from `completed` (let's call it `solution branch`) -7. Merge your `exercise branch` into the `solution brnach` +7. Merge your `exercise branch` into the `solution branch` 8. Implement `methodX()` and make sure that tests pass 9. Commit these changes to the `solution branch` 10. Push the changes From 68351d0741ffd7747fdf03c7c5b833671451bb1f Mon Sep 17 00:00:00 2001 From: Serhii Bondarenko Date: Tue, 15 Nov 2022 17:01:22 +0200 Subject: [PATCH 2/2] [GP-165] Rename 2-2-7-hash-table to 2-2-9-hash-table --- .../{2-2-7-hash-table => 2-2-9-hash-table}/README.md | 0 .../{2-2-7-hash-table => 2-2-9-hash-table}/pom.xml | 2 +- .../src/main/java/com/bobocode/cs/HashTable.java | 0 .../src/main/java/com/bobocode/cs/Map.java | 0 .../src/test/java/com/bobocode/cs/HashTableTest.java | 0 2-0-data-structures-and-algorithms/pom.xml | 2 +- 6 files changed, 2 insertions(+), 2 deletions(-) rename 2-0-data-structures-and-algorithms/{2-2-7-hash-table => 2-2-9-hash-table}/README.md (100%) rename 2-0-data-structures-and-algorithms/{2-2-7-hash-table => 2-2-9-hash-table}/pom.xml (91%) rename 2-0-data-structures-and-algorithms/{2-2-7-hash-table => 2-2-9-hash-table}/src/main/java/com/bobocode/cs/HashTable.java (100%) rename 2-0-data-structures-and-algorithms/{2-2-7-hash-table => 2-2-9-hash-table}/src/main/java/com/bobocode/cs/Map.java (100%) rename 2-0-data-structures-and-algorithms/{2-2-7-hash-table => 2-2-9-hash-table}/src/test/java/com/bobocode/cs/HashTableTest.java (100%) diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/README.md b/2-0-data-structures-and-algorithms/2-2-9-hash-table/README.md similarity index 100% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/README.md rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/README.md diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml b/2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml similarity index 91% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml index b9064ad48..0453cee6a 100644 --- a/2-0-data-structures-and-algorithms/2-2-7-hash-table/pom.xml +++ b/2-0-data-structures-and-algorithms/2-2-9-hash-table/pom.xml @@ -9,7 +9,7 @@ 4.0.0 - 2-2-7-hash-table + 2-2-9-hash-table \ No newline at end of file diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/HashTable.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/HashTable.java similarity index 100% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/HashTable.java rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/HashTable.java diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/Map.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/Map.java similarity index 100% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/Map.java rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/main/java/com/bobocode/cs/Map.java diff --git a/2-0-data-structures-and-algorithms/2-2-7-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java b/2-0-data-structures-and-algorithms/2-2-9-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java similarity index 100% rename from 2-0-data-structures-and-algorithms/2-2-7-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java rename to 2-0-data-structures-and-algorithms/2-2-9-hash-table/src/test/java/com/bobocode/cs/HashTableTest.java diff --git a/2-0-data-structures-and-algorithms/pom.xml b/2-0-data-structures-and-algorithms/pom.xml index 7d9923712..a08d31d22 100644 --- a/2-0-data-structures-and-algorithms/pom.xml +++ b/2-0-data-structures-and-algorithms/pom.xml @@ -11,7 +11,7 @@ 2-2-4-linked-list 2-2-5-array-list 2-2-6-binary-search-tree - 2-2-7-hash-table + 2-2-9-hash-table data-structures-and-algorithms-util