Skip to content

Commit 86444d6

Browse files
committedJun 20, 2024
Merge branch 'refs/heads/main' into completed
2 parents 5c4e3ca + 707802e commit 86444d6

File tree

14 files changed

+6
-17
lines changed

14 files changed

+6
-17
lines changed
 

‎1-0-java-basics/1-3-0-hello-generics/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ it is not safe. Using `Object` requires runtime casting which can cause runtime
2424

2525
---
2626
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
27-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/Q5aEmF8E86fbZ4rXA)
2827

2928
##
3029
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎1-0-java-basics/1-3-2-heterogeneous-max-holder/README.MD

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
* implement a generic method getMax that retrieves a max value by its type ✅
1010
* wrap a comparator instance to make it null-safe ✅
1111

12+
### Exercise overview 🇺🇦
13+
[![Watch the video](https://img.youtube.com/vi/jQnGDgH-Zfg/0.jpg)](https://www.youtube.com/watch?v=jQnGDgH-Zfg)
14+
1215
---
1316
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
14-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/u6kHcecFuzxV232LA)
1517

1618
##
1719
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎2-0-data-structures-and-algorithms/2-2-5-array-list/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Build strong skills implementing a well known Array List data structure 💪
2222
---
2323

2424
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
25-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/WQPxc7rDFgZK6eEk7)
2625

2726
##
2827
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎3-0-java-core/3-6-1-file-reader/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ You're supposed to know the basics of Stream API and how to work with files in J
1212

1313
---
1414
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
15-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/MAfCxL1JLfY76ki9A)
1615

1716
##
1817
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎3-0-java-core/3-6-2-file-stats/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ You're supposed to know how to work with text files and be able to write Java co
1515
---
1616

1717
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
18-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/jhXEAzG4TB81S43CA)
1918

2019
##
2120
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎3-0-java-core/3-6-3-crazy-regex/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ it's called back reference)
6161
---
6262

6363
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
64-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/jhXEAzG4TB81S43CA)
6564

6665
##
6766
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎3-0-java-core/3-6-4-random-field-comparator/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
---
1313
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
14-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/u6kHcecFuzxV232LA)
1514

1615
##
1716
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎4-0-object-oriented-programming/4-3-1-flight-search/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ You're supposed to be familiar polymorphism and Java interfaces
2121
---
2222

2323
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
24-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/8YUNC2YctwDi7qwP7)
2524

2625
##
2726
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎5-0-functional-programming/5-0-1-lambda-functions-map/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Start learning functional programming in Java by writing simple math functions u
1313
---
1414

1515
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
16-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/TPSCpZAMZvNXYCoA6)
1716

1817
##
1918
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎5-0-functional-programming/5-0-2-stream-sum-of-squares/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Learn functional programming by refactoring a piece of code using Stream API
99

1010
---
1111
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
12-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/7GaNdgTDWhaSh4fc7)
1312

1413
##
1514
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎5-0-functional-programming/5-1-1-crazy-lambdas/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,10 @@ it can help you to simplify the code even more:
5555
* Favor the use of standard functional interfaces - Item 44
5656

5757
### Exercise overview 🇺🇦
58-
[![Linked List](https://yt-embed.herokuapp.com/embed?v=tNizKD1JbwM)](https://youtu.be/tNizKD1JbwM)
58+
[![Watch the video](https://img.youtube.com/vi/tNizKD1JbwM/0.jpg)](https://www.youtube.com/watch?v=tNizKD1JbwM)
5959

6060
---
6161
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
62-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/GcKJyr1fEGaPrrLz8)
6362

6463
##
6564
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎5-0-functional-programming/5-2-1-crazy-streams/README.MD

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ To verify your implementation, run `CrazyStreamsTest.java`
1010
* [Modern Java in Action (chapters 4 - 6)](https://www.amazon.com/dp/1617293563/ref=cm_sw_r_tw_dp_XN3TPAASB945V8XQPW5F) 📕
1111

1212
### Exercise overview 🇺🇦
13-
[![Linked List](https://yt-embed.herokuapp.com/embed?v=o1H6kMlCQ74)](https://youtu.be/o1H6kMlCQ74)
13+
[![Watch the video](https://img.youtube.com/vi/o1H6kMlCQ74/0.jpg)](https://www.youtube.com/watch?v=o1H6kMlCQ74)
1414

1515
---
1616
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
17-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/K1ETyrRybV1RpfHA6)
1817

1918
##
2019
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎5-0-functional-programming/5-3-1-crazy-optionals/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ To verify your implementation, run `CrazyOptionalsTest.java`
1010
* [Stream API. Optional. Курс Enterprise Java <img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/image/yt_icon_rgb.png" height=13/>](https://youtu.be/OD0hIs1cGmY)
1111

1212
### Exercise overview 🇺🇦
13-
[![Linked List](https://yt-embed.herokuapp.com/embed?v=yyhD0QZGMRs)](https://youtu.be/yyhD0QZGMRs)
13+
[![Watch the video](https://img.youtube.com/vi/yyhD0QZGMRs/0.jpg)](https://www.youtube.com/watch?v=yyhD0QZGMRs)
1414

1515
---
1616
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
17-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/vkhad17uT7DTWThQ9)
1817

1918
##
2019
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

‎5-0-functional-programming/5-4-1-fun-prime-numbers/README.MD

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ You're supposed to be familiar with Lambdas, Stream API and Optional API
1414

1515
---
1616
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
17-
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/ndFEj5xArhTBQaRQA)
1817

1918
##
2019
<div align="center"><img src="https://raw.githubusercontent.com/bobocode-projects/resources/master/animation/GitHub%20Star_3.gif" height=50/></div>

0 commit comments

Comments
 (0)
Failed to load comments.