Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>2-2-7-hash-table</artifactId>
<artifactId>2-2-9-hash-table</artifactId>


</project>
2 changes: 1 addition & 1 deletion 2-0-data-structures-and-algorithms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<module>2-2-4-linked-list</module>
<module>2-2-5-array-list</module>
<module>2-2-6-binary-search-tree</module>
<module>2-2-7-hash-table</module>
<module>2-2-9-hash-table</module>
<module>data-structures-and-algorithms-util</module>
</modules>

Expand Down
4 changes: 2 additions & 2 deletions 5-0-functional-programming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<Account> findAllGmailAccounts(List<Account> accounts) {
Expand All @@ -40,7 +40,7 @@ public List<Account> findAllGmailAccounts(List<Account> 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 ?
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down