Skip to content

Commit 4aeef35

Browse files
johnA1331Eugen
authored andcommitted
Bi-monthly test fix - BAEL-16797 (eugenp#7822)
* Create README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create README.md * Update README.md * Create README.md * Update README.md * Create README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md
1 parent 8db8202 commit 4aeef35

27 files changed

Lines changed: 44 additions & 6 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## Relevant articles:
22

3-
- [Dijkstra Algorithm in Java](https://www.baeldung.com/java-dijkstra)
3+
- [Dijkstra Shortest Path Algorithm in Java](https://www.baeldung.com/java-dijkstra)
44
- [Introduction to Cobertura](https://www.baeldung.com/cobertura)
55
- [Test a Linked List for Cyclicity](https://www.baeldung.com/java-linked-list-cyclicity)
66
- [Introduction to JGraphT](https://www.baeldung.com/jgrapht)
77
- [A Maze Solver in Java](https://www.baeldung.com/java-solve-maze)
88
- [Create a Sudoku Solver in Java](https://www.baeldung.com/java-sudoku)
99
- [Displaying Money Amounts in Words](https://www.baeldung.com/java-money-into-words)
10-
- [A Collaborative Filtering Recommendation System in Java](https://www.baeldung.com/java-collaborative-filtering-recommendations)
10+
- [A Collaborative Filtering Recommendation System in Java](https://www.baeldung.com/java-collaborative-filtering-recommendations)

algorithms-sorting/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
- [Heap Sort in Java](https://www.baeldung.com/java-heap-sort)
88
- [Shell Sort in Java](https://www.baeldung.com/java-shell-sort)
99
- [Counting Sort in Java](https://www.baeldung.com/java-counting-sort)
10+
- [Sorting Strings by Contained Numbers in Java](https://www.baeldung.com/java-sort-strings-contained-numbers)

apache-olingo/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
## Relevant articles:
22

33
- [OData Protocol Guide](https://www.baeldung.com/odata)
4+
- [Intro to OData with Olingo](https://www.baeldung.com/olingo)

core-groovy-2/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
- [Working with XML in Groovy](https://www.baeldung.com/groovy-xml)
1010
- [Integrating Groovy into Java Applications](https://www.baeldung.com/groovy-java-applications)
1111
- [Concatenate Strings with Groovy](https://www.baeldung.com/groovy-concatenate-strings)
12+
- [Metaprogramming in Groovy](https://www.baeldung.com/groovy-metaprogramming)

core-java-modules/core-java-8-2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
### Relevant Articles:
66
- [Anonymous Classes in Java](http://www.baeldung.com/)
77
- [How to Delay Code Execution in Java](https://www.baeldung.com/java-delay-code-execution)
8-
- [Run JAR Application With Command Line Arguments](https://www.baeldung.com/java-run-jar-with-arguments)
8+
- [Run a Java Application from the Command Line](https://www.baeldung.com/java-run-jar-with-arguments)
99
- [Java 8 Stream skip() vs limit()](https://www.baeldung.com/java-stream-skip-vs-limit)
1010
- [Guide to Java BiFunction Interface](https://www.baeldung.com/java-bifunction-interface)

core-java-modules/core-java-arrays/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
- [Multi-Dimensional Arrays In Java](https://www.baeldung.com/java-jagged-arrays)
1111
- [Find Sum and Average in a Java Array](https://www.baeldung.com/java-array-sum-average)
1212
- [Arrays in Java: A Reference Guide](https://www.baeldung.com/java-arrays-guide)
13-
- [How to Invert an Array in Java](https://www.baeldung.com/java-invert-array)
13+
- [Read and Write User Input in Java](https://www.baeldung.com/java-console-input-output)
14+
- [How to Reverse an Array in Java](http://www.baeldung.com/java-invert-array)
1415
- [Sorting Arrays in Java](https://www.baeldung.com/java-sorting-arrays)
1516
- [Checking If an Array Is Sorted in Java](https://www.baeldung.com/java-check-sorted-array)

core-java-modules/core-java-lang-oop-2/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313
- [Immutable Objects in Java](https://www.baeldung.com/java-immutable-object)
1414
- [Inheritance and Composition (Is-a vs Has-a relationship) in Java](https://www.baeldung.com/java-inheritance-composition)
1515
- [A Guide to Constructors in Java](https://www.baeldung.com/java-constructors)
16-
- [Static and Default Methods in Interfaces in Java](https://www.baeldung.com/java-static-default-methods)
16+
- [Composition, Aggregation, and Association in Java](https://www.baeldung.com/java-composition-aggregation-association)
17+
- [Static and Default Methods in Interfaces in Java](https://www.baeldung.com/java-static-default-methods)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Relevant Articles:
2+
- [Guide to the Diamond Operator in Java](https://www.baeldung.com/java-diamond-operator)
3+
- [Ternary Operator In Java](https://www.baeldung.com/java-ternary-operator)
4+
- [The Modulo Operator in Java](https://www.baeldung.com/modulo-java)
5+
- [Java instanceof Operator](https://www.baeldung.com/java-instanceof)
6+
- [A Guide to Increment and Decrement Unary Operators in Java](https://www.baeldung.com/java-unary-operators)

core-java-modules/core-java-lang/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,4 @@
3838
- [Attaching Values to Java Enum](https://www.baeldung.com/java-enum-values)
3939
- [Variable Scope in Java](https://www.baeldung.com/java-variable-scope)
4040
- [Java Classes and Objects](https://www.baeldung.com/java-classes-objects)
41+
- [A Guide to Java Enums](https://www.baeldung.com/a-guide-to-java-enums)

core-java-modules/core-java-security/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
- [SHA-256 and SHA3-256 Hashing in Java](https://www.baeldung.com/sha-256-hashing-java)
1212
- [Enabling TLS v1.2 in Java 7](https://www.baeldung.com/java-7-tls-v12)
1313
- [The Java SecureRandom Class](https://www.baeldung.com/java-secure-random)
14+
- [An Introduction to Java SASL](https://www.baeldung.com/java-sasl)

0 commit comments

Comments
 (0)