diff --git a/core-kotlin-modules/core-kotlin-9/README.md b/core-kotlin-modules/core-kotlin-9/README.md index 056e37f2a..7abcda634 100644 --- a/core-kotlin-modules/core-kotlin-9/README.md +++ b/core-kotlin-modules/core-kotlin-9/README.md @@ -3,4 +3,6 @@ - [Find Least Common Multiple of Two Numbers in Kotlin](https://www.baeldung.com/kotlin/lcm) - [Calculate Greatest Common Divisor in Kotlin](https://www.baeldung.com/kotlin/gcd) - [Kotlin ?.let() vs if not null](https://www.baeldung.com/kotlin/let-vs-if-not-null) +- [Generate an MD5 Hash in Kotlin](https://www.baeldung.com/kotlin/md5-hash) +- [Is Kotlin Pass-By-Value or Pass-By-Reference?](https://www.baeldung.com/kotlin/parameters-pass-value-reference) - [Util Classes in Kotlin](https://www.baeldung.com/kotlin/utility-class) diff --git a/core-kotlin-modules/core-kotlin-arrays-2/README.md b/core-kotlin-modules/core-kotlin-arrays-2/README.md index 931856e0a..1209c3064 100644 --- a/core-kotlin-modules/core-kotlin-arrays-2/README.md +++ b/core-kotlin-modules/core-kotlin-arrays-2/README.md @@ -1,4 +1,5 @@ ## Relevant Articles - [Get Subarray of an Array Between Given Positions in Kotlin](https://www.baeldung.com/kotlin/subarray-index-range) - [Removing the First Element From an Array in Kotlin](https://www.baeldung.com/kotlin/array-remove-first-element) +- [Iterate Through an Array in Reverse Order in Kotlin](https://www.baeldung.com/kotlin/array-iterate-reverse) - [Cyclically Rotate Array by One in Kotlin](https://www.baeldung.com/kotlin/array-cyclic-rotation) diff --git a/core-kotlin-modules/core-kotlin-collections-list-2/README.md b/core-kotlin-modules/core-kotlin-collections-list-2/README.md index 08b337f77..7f95c96d2 100644 --- a/core-kotlin-modules/core-kotlin-collections-list-2/README.md +++ b/core-kotlin-modules/core-kotlin-collections-list-2/README.md @@ -1,2 +1,4 @@ ## Relevant Articles - [How to Convert Integer List to IntArray in Kotlin](https://www.baeldung.com/kotlin/convert-integer-list-intarray) +- [Iterate Through a List and Add Items in Kotlin](https://www.baeldung.com/kotlin/list-iterate-add-items-dynamically) +- [How to Convert a Type-Erased List to an Array in Kotlin](https://www.baeldung.com/kotlin/type-erased-list-array-conversion) diff --git a/core-kotlin-modules/core-kotlin-collections-set/README.md b/core-kotlin-modules/core-kotlin-collections-set/README.md index c2fccc7dc..e0c6873b3 100644 --- a/core-kotlin-modules/core-kotlin-collections-set/README.md +++ b/core-kotlin-modules/core-kotlin-collections-set/README.md @@ -1,3 +1,4 @@ ## Relevant Articles - [Guide to Set and MutableSet in Kotlin](https://www.baeldung.com/kotlin/set-mutableset) - [Clone a Set in Kotlin](https://www.baeldung.com/kotlin/clone-set) +- [How to Add List Contents Into a Set in Kotlin](https://www.baeldung.com/kotlin/set-add-list-elements) diff --git a/core-kotlin-modules/core-kotlin-lang-4/README.md b/core-kotlin-modules/core-kotlin-lang-4/README.md index c11bd5e02..f4d65c1e9 100644 --- a/core-kotlin-modules/core-kotlin-lang-4/README.md +++ b/core-kotlin-modules/core-kotlin-lang-4/README.md @@ -8,4 +8,5 @@ This module contains articles about core features in the Kotlin language. - [Using Kotlin when() Clause for <, <=, >=, and == Comparisons](https://www.baeldung.com/kotlin/when-clause-comparisons) - [Difference Between “it” and “this” Keywords in Kotlin](https://www.baeldung.com/kotlin/it-vs-this-keywords) - [Data Objects in Kotlin](https://www.baeldung.com/kotlin/data-object-basics) +- [Working With Triple in Kotlin](https://www.baeldung.com/kotlin/triple-type) - [[<-- prev]](/core-kotlin-modules/core-kotlin-lang-3) diff --git a/kotlin-json/README.md b/kotlin-json/README.md index 5faf729da..b4a370251 100644 --- a/kotlin-json/README.md +++ b/kotlin-json/README.md @@ -10,3 +10,4 @@ This module contains modules about JSON. - [How to Parse JSON Without Data Class in Kotlin](https://www.baeldung.com/kotlin/parse-json-without-data-class) - [Handling Multiple Names for JSON Field in Kotlin](https://www.baeldung.com/kotlin/json-field-several-names) - [JSON String to Map](https://www.baeldung.com/kotlin/json-convert-map) +- [How to Extract Individual Values From a JSON String](https://www.baeldung.com/kotlin/json-extract-individual-values) diff --git a/kotlin-ktor/README.md b/kotlin-ktor/README.md index 8dd3a1f4c..b71a276ca 100644 --- a/kotlin-ktor/README.md +++ b/kotlin-ktor/README.md @@ -5,3 +5,4 @@ This module contains articles about Kotlin Libraries. ### Relevant articles: - [An Introduction to Running GraphQL in Kotlin and Ktor](https://www.baeldung.com/kotlin/graphql-ktor) - [Creating a Web Application With Ktor and Thymeleaf](https://www.baeldung.com/kotlin/ktor-thymeleaf-web-application) +- [A Look at the Ktor Client](https://www.baeldung.com/kotlin/ktor-client) diff --git a/kotlin-lambda/README.md b/kotlin-lambda/README.md index a307cbd8a..56f9d4393 100644 --- a/kotlin-lambda/README.md +++ b/kotlin-lambda/README.md @@ -2,3 +2,5 @@ - [SAM Conversions in Kotlin](https://www.baeldung.com/kotlin/sam-conversions) - [Lambdas with Receivers in Kotlin](https://www.baeldung.com/kotlin/lambda-receiver) +- [Using return Inside a Lambda in Kotlin](https://www.baeldung.com/kotlin/return-inside-a-lambda) +- [Using Function as Argument With Default Value in Kotlin](https://www.baeldung.com/kotlin/function-argument-default-value) diff --git a/kotlin-math-2/README.md b/kotlin-math-2/README.md index 06e1732d3..7f4d54625 100644 --- a/kotlin-math-2/README.md +++ b/kotlin-math-2/README.md @@ -1,3 +1,4 @@ ## Relevant Articles - [Fibonacci Series in Kotlin](https://www.baeldung.com/kotlin/fibonacci-series) - [Find Average of All Items in a List in Kotlin](https://www.baeldung.com/kotlin/list-mean-value) +- [How to Calculate Standard Deviation in Kotlin](https://www.baeldung.com/kotlin/standard-deviation) diff --git a/kotlin-patterns/README.md b/kotlin-patterns/README.md index 5ed83e095..1a83d15e8 100644 --- a/kotlin-patterns/README.md +++ b/kotlin-patterns/README.md @@ -1,3 +1,4 @@ ### Relevant Articles: - [The Observer Pattern in Kotlin](https://www.baeldung.com/kotlin/observer-pattern) +- [Mediator Pattern in Kotlin](https://www.baeldung.com/kotlin/mediator) - [Strategy Design Pattern in Kotlin](https://www.baeldung.com/kotlin/strategy-design-pattern)