Kotlin

reified type

How to Use reified type in Kotlin to Access Generic Type Information

When working with generics in Kotlin, you may have encountered type erasure, where type information is lost at runtime. Kotlin provides a powerful feature called the reified type to overcome this limitation, allowing us to access generic type information at runtime.

In this article, we’ll explore how reified types work, why they are useful, and how to implement them effectively in Kotlin.

Why Do We Need Reified type in Kotlin?

When working with generics, Kotlin (like Java) erases type parameters at runtime. This means that when we pass a generic type, the actual type information isn’t available during execution. 

Kotlin
fun <T> getTypeInfo(): Class<T> {
    return T::class.java // Error: Cannot use 'T' as reified type parameter
}

This code won’t compile because T::class.java requires a reified type parameter, which isn’t available by default in regular generic functions.

Solution: Using Reified Type with Inline Functions

To preserve generic type information at runtime, we need to mark the function as inline and use the reified keyword:

Kotlin
inline fun <reified T> getTypeInfo(): Class<T> {
    return T::class.java
}

fun main() {
    val type = getTypeInfo<String>()
    println(type) // Output: class java.lang.String
}

Now, T is reified, meaning its type information is retained at runtime, and we can access it without reflection hacks.

Understanding “Reified’ Type in Kotlin

When we use reified types, the compiler replaces the generic type T with the actual type parameter used in the function call. This is possible because the function is marked inline, meaning its bytecode is directly inserted at call sites.

Practical Examples of Reified Type

Checking an Object’s Type

Instead of using is checks manually, we can simplify the process:

Kotlin
inline fun <reified T> isTypeMatch(value: Any): Boolean {
    return value is T
}

fun main() {
    println(isTypeMatch<String>("Hello")) // true
    println(isTypeMatch<Int>("Hello"))    // false
}

Creating Instances of Generic Classes

We can use reified types to instantiate objects dynamically:

Kotlin
inline fun <reified T> createInstance(): T? {
    return T::class.java.getDeclaredConstructor().newInstance()
}

class ExampleClass {
    fun show() = println("Instance Created")
}

fun main() {
    val instance = createInstance<ExampleClass>()
    instance?.show() // Output: Instance Created
}

Filtering a List Based on Type

Using reified, we can filter elements of a list dynamically:

Kotlin
inline fun <reified T> List<Any>.filterByType(): List<T> {
    return this.filterIsInstance<T>()
}

fun main() {
    val items = listOf(1, "Hello", 2.5, "Kotlin", 42)
    val strings: List<String> = items.filterByType()
    println(strings) // Output: [Hello, Kotlin]
}

Why reified Works Only with Inline Functions

The reified type only works with inline functions because the compiler replaces the generic type T with the actual type at compile time. This prevents type erasure and allows us to access type information.

If we remove inline, the code won’t compile because T would be erased at runtime.

Limitations of Reified Type

While reified types are useful, there are some restrictions:

  1. Only Works in Inline Functions — reified cannot be used in normal functions.
  2. Cannot Be Used in Class-Level Generics — It’s specific to functions and doesn’t work with class type parameters.
  3. Code Size Increase Due to Inlining — Since the function is inlined, it may increase the bytecode size if used excessively.

Dive deeper into this topic here: [Main Article URL]

Conclusion

The “reified” type keyword in Kotlin is a game-changer for handling generics efficiently. It allows us to retain type information at runtime, eliminating the need for reflection while improving performance and readability. Whether you’re checking types, filtering lists, or dynamically creating instances, reified types make generic programming in Kotlin much more powerful and intuitive.

So, next time you work with generics, try leveraging reified types and experience the difference..!

Check Kotlin Bytecode

How to Check Kotlin Bytecode in Android Studio

Kotlin is a modern, concise, and powerful programming language that runs on the JVM (Java Virtual Machine). Since Kotlin compiles down to Java bytecode, understanding the generated bytecode can help developers optimize performance, debug issues, and learn more about how Kotlin works under the hood.

In this article, we’ll explore multiple ways to check Kotlin bytecode in Android Studio. We’ll also learn how to decompile Kotlin bytecode into Java and inspect the compiled .class files.

Why Should You Check Kotlin Bytecode?

Before we dive into the how-to, let’s quickly understand why checking Kotlin bytecode is important:

  • Performance Optimization — Analyzing bytecode helps identify unnecessary allocations, redundant operations, or expensive method calls.
  • Understanding Kotlin Features — Features like inline functions, lambda expressions, coroutines, and extension functions have unique bytecode representations.
  • Debugging Issues — Sometimes, behavior differs between Kotlin and Java. Examining bytecode can help debug potential pitfalls.
  • Learning JVM Internals — Developers who want to deepen their knowledge of the JVM can benefit from exploring compiled bytecode.

Method 1 (Recommended): Using “Show Kotlin Bytecode” Tool in Android Studio

Android Studio provides a built-in tool to inspect Kotlin bytecode and decompile it into Java code. Here’s how to use it:

Step 1: Open Your Kotlin File

Open any Kotlin file (.kt) inside your Android Studio project.

Step 2: Open the Kotlin Bytecode Viewer

Option 1: Using Menu Navigation

  • Click on Tools in the top menu bar.
  • Navigate to KotlinShow Kotlin Bytecode.

Option 2: Using Shortcut Command

  • Press Ctrl + Shift + A (Windows/Linux) or Cmd + Shift + A (Mac).
  • Type “Show Kotlin Bytecode” in the search box and select it.

Step 3: Inspect the Bytecode

Once the Kotlin Bytecode window opens, you’ll see a textual representation of the compiled bytecode.

Step 4: Decompile Bytecode to Java (Optional)

  • Click the Decompile button inside the Kotlin Bytecode window.
  • This will convert the bytecode into Java-equivalent code, which helps understand how Kotlin translates to Java.

Method 2: Inspecting .class Files in Build Directory

Another way to check Kotlin bytecode is by inspecting the compiled .class files inside your project’s build directory. Here’s how:

Step 1: Enable Kotlin Compiler Options

Modify gradle.properties to ensure the compiler executes in-process:

Groovy
kotlin.compiler.execution.strategy=in-process

It’s important to note that Android Studio generates .class files regardless. However, when kotlin.compiler.execution.strategy=in-process is specified, the compiler runs within the same process as the Gradle build.

Step 2: Compile the Project

  • Build your project by clicking BuildMake Project or using the shortcut Ctrl + F9 (Windows/Linux) or Cmd + F9 (Mac).

Step 3: Locate the Compiled .class Files

  • Navigate to the build folder inside your module:
  • app/build/.../classes/
  • Inside this directory, you’ll find .class files corresponding to your Kotlin classes.

Step 4: Use javap to Inspect Bytecode

To view the actual bytecode, use the javap tool:

Groovy
javap -c -p MyClass.class

This will print the bytecode instructions for the compiled class.

Additional Tips for Analyzing Kotlin Bytecode

  1. Use IntelliJ IDEA for Better Analysis — Since Android Studio is based on IntelliJ IDEA, you can use the same tools for deeper bytecode analysis.
  2. Understand the Impact of Kotlin Features — Features like data classes, inline functions, and coroutines generate different bytecode patterns. Observing them can help optimize performance.
  3. Experiment with Compiler Flags — The Kotlin compiler provides various options (-Xjvm-default=all, -Xinline-classes, etc.) that affect bytecode generation.

Conclusion

Checking Kotlin bytecode in Android Studio is a valuable skill for developers who want to optimize performance, debug issues, and deepen their understanding of how Kotlin interacts with the JVM. By using the built-in Kotlin Bytecode Viewer, decompiling to Java, and inspecting .class files, you can gain insights into Kotlin’s compilation process.

noinline Modifier

Understanding the noinline Modifier in Kotlin: When and Why to Use It

Kotlin is a powerful language that introduces many useful features to make development more efficient. One such feature is inline functions, which improve performance by eliminating function call overhead. However, sometimes we need more control over how lambdas behave inside an inline function. That’s where the noinline modifier in Kotlin comes into play.

In this article, we’ll dive deep into the noinline modifier in Kotlin, exploring its purpose, use cases, and practical examples. By the end, you’ll have a clear understanding of when and why to use noinline in your Kotlin code.

What is the noinline Modifier in Kotlin?

Before understanding noinline, let’s first recall what an inline function is.

An inline function in Kotlin is a function where the compiler replaces the function call with the actual function body to reduce the overhead of function calls, especially when dealing with higher-order functions (functions that take other functions as parameters).

However, there are cases where we don’t want certain lambdas to be inlined. This is where the noinline modifier comes in. It tells the compiler not to inline a specific lambda inside an inline function.

Kotlin
inline fun foo(inlined: () -> Unit, noinline notInlined: () -> Unit) {
    // ...
}

Here, by using noinline, you indicate that the notInlined parameter should not be inlined.

Why Use noinline Modifier in Kotlin?

Using noinline in Kotlin is beneficial in several scenarios:

Passing Lambdas to Another Function

  • If you need to store or pass a lambda to another function, it cannot be inlined.
  • The compiler removes inlined lambdas at compile time, making it impossible to reference them. The noinline modifier prevents this, allowing the lambda to be passed as an argument.

Avoiding Code Bloat

  • Excessive inlining can increase bytecode size, leading to performance issues.
  • Marking a lambda as noinline prevents unnecessary duplication in the generated bytecode.

Using Reflection on Lambdas

  • If you need to inspect a lambda function using reflection (e.g., ::functionName), it cannot be inlined because inline functions don’t have an actual function reference at runtime.
  • The noinline modifier ensures the lambda remains a callable reference.

How to Use noinline Modifier in Kotlin

Let’s start with a simple example to illustrate the use of noinline

Kotlin
inline fun processNumbers(a: Int, b: Int, noinline operation: (Int, Int) -> Int): Int {
    println("Processing numbers...")
    return operation(a, b)
}

fun main() {
    val result = processNumbers(5, 10) { x, y -> x + y }
    println("Result: $result")
}


// OUTPUT

Processing numbers...
Result: 15

Here,

  • processNumbers is an inline function, meaning its body (except noinline parts) gets copied directly to the main() function during compilation.
  • The lambda function operation is marked as noinline, meaning it will not be inlined.
  • Instead, the lambda is converted into an actual function reference, and processNumbers will call it like a regular function.

What If We Remove noinline?

If we remove noinline, like this:

Kotlin
inline fun processNumbers(a: Int, b: Int, operation: (Int, Int) -> Int): Int {
    println("Processing numbers...")
    return operation(a, b) // This lambda gets inlined now!
}

Then the call in main():

Kotlin
val result = processNumbers(5, 10) { x, y -> x + y }
println("Result: $result")

Will be inlined at compile-time. The compiled code will look like this:

Kotlin
fun main() {
    println("Processing numbers...")
    val result = (5 + 10) // Lambda is directly inserted
    println("Result: $result")
}

// Expected Output (without noinline)

Processing numbers...
Result: 15

Here,

  • The output remains the same, but the function processNumbers no longer exists in the compiled code.
  • The lambda { x, y -> x + y } has been directly replaced with (5 + 10).

Key Difference in Bytecode

Let’s look at the actual difference in bytecode to prove how noinline affects inlining.

Case 1: With noinline

  • The lambda { x, y -> x + y } is treated as a separate function.
  • A new function object is created, and processNumbers calls it dynamically.

This is how the bytecode looks in a simplified way:

Java
public static final int main() {
    Function2<Integer, Integer, Integer> lambda = new Function2<Integer, Integer, Integer>() {
        @Override
        public Integer invoke(Integer x, Integer y) {
            return x + y;
        }
    };
    
    System.out.println("Processing numbers...");
    int result = lambda.invoke(5, 10);
    System.out.println("Result: " + result);
}
  • Notice: The lambda is a separate function object (Function2).
  • Runtime overhead: There’s an additional function call.

Case 2: Without noinline

  • The lambda gets completely removed.
  • Its body is inserted directly at the call site.

This is how the bytecode looks in a simplified way:

Java
public static final void main() {
    System.out.println("Processing numbers...");
    int result = 5 + 10;
    System.out.println("Result: " + result);
}
  • No lambda function object.
  • Zero function call overhead.
  • More efficient but increases bytecode size if overused.

When Should You Use noinline?

  • When you need to pass a lambda to another function.
  • When you want to use a lambda for reflection.
  • When excessive inlining increases the bytecode size unnecessarily.

Using noinline ensures better control over how Kotlin optimizes function execution, improving both flexibility and performance.

This is just a part..! Get the full insights here: [Main Article URL]

Conclusion

The noinline modifier in Kotlin gives developers more control over inline functions, ensuring flexibility where inlining is not ideal. We use noinline when we need to:

  • Pass a lambda to another function.
  • Store a lambda in a variable.
  • Avoid excessive code bloat due to unnecessary inlining.

Understanding noinline helps write better-optimized Kotlin code while leveraging the benefits of inline functions where necessary.

Shadowing Lambda Parameters in Kotlin

How Shadowing Lambda Parameters in Kotlin Affects Readability and Debugging

Kotlin is a powerful and expressive language that makes coding both enjoyable and efficient. However, even the most elegant languages have subtle pitfalls that can catch developers off guard. One such hidden issue is shadowing lambda parameters. In this blog, we’ll explore what shadowing means in Kotlin, why it happens, how it impacts code readability and debugging, and best practices to avoid potential issues.

What Is Shadowing?

Shadowing occurs when a variable declared inside a block has the same name as a variable from an outer scope. This inner variable hides or shadows the outer one, making it inaccessible within the block.

In Kotlin, shadowing can also happen inside lambdas, leading to unexpected behavior and debugging challenges.

Shadowing Lambda Parameters in Kotlin: A Hidden Readability Issue

Now, let’s see how shadowing applies to lambda parameters and why it can be problematic.

Let’s start with an example:

Kotlin
fun main() {
    val numbers = listOf(1, 2, 3, 4, 5)
    val sum = numbers.fold(0) { acc, number ->
        val number = acc + number // Shadowing `number`
        number
    }
    println(sum) // Output: 15
}

At first glance, this code seems straightforward. However, notice the val number = acc + number line. Here, the parameter number inside the lambda is being shadowed by a new local variable with the same name.

While the code works, it is bad practice because it makes the code harder to read. This can be confusing, especially in larger codebases where readability is crucial.

Debugging Complexity Due to Shadowing

Shadowing lambda parameters might not always lead to immediate bugs, but it can make debugging more difficult by obscuring the intended logic. Consider this example:

Kotlin
fun main() {
    val words = listOf("Hello", "Kotlin", "World")
    val result = words.fold("") { acc, word ->
        val word = acc + word.first() // Shadowing `word`
        word
    }
    println(result) // Output: "HKW"
}

Here, word.first() refers to the original lambda parameter, but since we immediately shadow word with a new variable, the parameter word is no longer accessible. This can lead to confusion when debugging because the scope of variables is not immediately clear.

How to Avoid Shadowing Lambda Parameters

To write clearer and more maintainable code, avoid shadowing lambda parameters by choosing distinct variable names.

Solution 1: Use a Different Variable Name

One of the simplest ways to avoid shadowing is to use a different name for new variables:

Kotlin
fun main() {
    val numbers = listOf(1, 2, 3, 4, 5)
    val sum = numbers.fold(0) { acc, num ->
        val newNumber = acc + num // Clearer naming
        newNumber
    }
    println(sum) // Output: 15
}

Here, renaming number to num and using newNumber prevents confusion.

Solution 2: Avoid Declaring Unnecessary Variables

If you don’t need an extra variable, you can return the computed value directly:

Kotlin
fun main() {
    val words = listOf("Hello", "Kotlin", "World")
    val result = words.fold("") { acc, word ->
        acc + word.first()
    }
    println(result) // Output: "HKW"
}

This keeps the code clean and avoids shadowing altogether.

When Shadowing Might Be Intentional

There are rare cases where shadowing can be useful, such as when dealing with scoped functions like let:

Kotlin
fun main() {
    val text: String? = "Hello"
    text?.let { text ->
        println(text.uppercase()) // Shadowing here is intentional
    }
}

In this case, the outer text is nullable, but inside let, we create a non-nullable text, making the code safer.

Dive deeper into this topic here: [Main Article URL]

Conclusion

Shadowing lambda parameters in Kotlin can lead to subtle bugs, reduce code readability, and complicate debugging. While Kotlin allows it, developers should strive for clear and maintainable code by avoiding unnecessary variable shadowing. Choosing distinct variable names and returning computed values directly can help make your code more understandable and easier to debug.

By being mindful of this hidden pitfall, you can write cleaner, more efficient Kotlin code while avoiding common mistakes.

Kotlin 2.2 Non-Local Break and Continue

Kotlin 2.2 Non-Local Break and Continue: A Game-Changer for Control Flow

Kotlin has always been celebrated for its concise and expressive syntax. With the release of Kotlin 2.2 (currently available as 2.2.0-RC), developers get a long-awaited improvement in control flow inside higher-order functions: the stabilization of non-local break and continue.

This feature is more than syntactic sugar — it removes boilerplate, clarifies intent, and makes code using inline functions like forEach, map, or run far more intuitive.

In this guide, you’ll learn:

  • What non-local break and continue mean in Kotlin
  • Why they matter for real-world projects
  • How to use them effectively with examples
  • How to enable them in your compiler settings

Let’s dive in.

What Are Non-Local break and continue?

In most languages, break and continue work only inside traditional loops:

  • break → exits a loop immediately.
  • continue → skips the current iteration and moves to the next one.

But in Kotlin, before 2.2, things got tricky when you worked inside inline lambda expressions.

For example:

  • return@forEach would only exit the current lambda, not the outer loop.
  • Developers often needed flags or nested conditionals just to simulate breaking or continuing.

This created unnecessary complexity, especially in data processing pipelines.

The Challenge: Control Flow in Lambdas Before Kotlin 2.2

Here’s how developers had to handle this problem in earlier versions of Kotlin:

Kotlin
fun processDataOldWay(data: List<String>) {
    var foundError = false
    data.forEach { item ->
        if (item.contains("error")) {
            println("Error found: $item. Stopping processing.")
            foundError = true
            return@forEach // Only exits this lambda, not the loop
        }
        if (item.startsWith("skip")) {
            println("Skipping item: $item")
            return@forEach
        }
        println("Processing: $item")
    }

    if (foundError) {
        println("Processing halted due to error.")
    } else {
        println("All data processed successfully.")
    }
}

fun main() {
    val data1 = listOf("item1", "item2", "error_item", "item3")
    processDataOldWay(data1)

    println("---")

    val data2 = listOf("itemA", "skip_this", "itemB")
    processDataOldWay(data2)
}

// OUTPUT //

Processing: item1
Processing: item2
Error found: error_item. Stopping processing.
Processing: item3
Processing halted due to error.
---
Processing: itemA
Skipping item: skip_this
Processing: itemB
All data processed successfully.

Problems with this approach:

  • Extra flags (foundError) to track state.
  • Logic is harder to read and maintain.
  • Code intent is obscured by boilerplate.

The Solution: Non-Local Break and Continue in Kotlin 2.2

With Kotlin 2.2, non-local break and continue finally work inside inline functions.

Because inline lambdas are compiled into the calling scope, these keywords now behave exactly as you’d expect inside normal loops.

Here’s the updated version:

Kotlin
fun processDataNewWay(data: List<String>) {
    for (item in data) {
        if (item.contains("error")) {
            println("Error found: $item. Stopping processing.")
            break // Non-local break: exits immediately
        }
        if (item.startsWith("skip")) {
            println("Skipping item: $item")
            continue // Non-local continue: cleanly skips iteration
        }
        println("Processing: $item")
    }
    println("--- Finished processing data block.")
}

fun main() {
    println("Processing data1:")
    processDataNewWay(listOf("item1", "item2", "error_item", "item3"))

    println("\nProcessing data2:")
    processDataNewWay(listOf("itemA", "skip_this", "itemB", "itemC"))
}

// OUTPUT //

Processing data1:
Processing: item1
Processing: item2
Error found: error_item. Stopping processing.
--- Finished processing data block.

Processing data2:
Processing: itemA
Skipping item: skip_this
Processing: itemB
Processing: itemC
--- Finished processing data block.

What’s better now:

  • No flags or labels needed.
  • Direct, intuitive flow control.
  • Clearer intent and easier debugging.

Enabling Non-Local Control Flow in Kotlin

To use this feature, add the compiler flag to your Gradle build file:

Kotlin
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
    compilerOptions {
        freeCompilerArgs.add("-Xnon-local-break-continue")
    }
}

Note:

  • Required in Kotlin 2.2.0-RC.
  • Likely optional in the stable Kotlin 2.2 release, once the feature is fully stabilized.

Why This Matters for Developers

Non-local break and continue aren’t just about syntactic sugar—they bring real productivity gains:

  • Cleaner higher-order function pipelines → easier reasoning about loops and early exits.
  • Reduced cognitive load → no need to remember when return@label applies.
  • Improved maintainability → intent matches the code’s structure.

This makes Kotlin more developer-friendly and strengthens its position as a modern, pragmatic language for both backend and Android development.

FAQs: Kotlin 2.2 Non-Local Break and Continue

Q1: What is a non-local break in Kotlin?
 A non-local break allows you to exit an enclosing loop from inside an inline lambda, not just the lambda itself.

Q2: What is a non-local continue in Kotlin?
 A non-local continue skips the current iteration of the enclosing loop even when inside a lambda.

Q3: Do I need a compiler flag to use this feature?
 Yes, in Kotlin 2.2.0-RC you must enable -Xnon-local-break-continue. From the stable release onward, this may be enabled by default.

Q4: Where is this most useful?
 This is especially powerful in collection processing, functional transformations, and inline control structures like forEach, map, or run.

Q5: Does this replace return labels?
 Not entirely. return@label still has its uses, but in many cases, non-local break and continue eliminate the need for them.

Conclusion

The stabilization of non-local break and continue in Kotlin 2.2 is a big quality-of-life improvement for developers. It simplifies control flow inside lambdas, reduces boilerplate, and makes code more expressive.

If your codebase relies heavily on higher-order functions, enabling this feature will help you write cleaner, more natural Kotlin.

Kotlin continues to evolve — not just by adding features, but by refining the language to match how developers actually write code. And non-local control flow is a great example of that.

inline properties

How Inline Properties Improve Performance in Kotlin

Kotlin is known for its modern and expressive syntax, making development smoother and more efficient. One of the lesser-known but powerful features of Kotlin is inline properties, which can significantly impact performance. In this article, we’ll explore how inline properties improve performance in Kotlin, understand their implementation with examples, and see why they matter in real-world applications.

What Are Inline Properties?

Inline properties in Kotlin allow property accessors (getters and setters) to be inlined at the call site. This eliminates method call overhead and improves execution speed. Essentially, when you mark a property accessor as inline, the compiler replaces the function call with its actual code during compilation, resulting in a more efficient bytecode.

Why Use Inline Properties?

When you define a property with custom getters or setters in Kotlin, the compiler generates a function behind the scenes. Every time the property is accessed, this function is called. While this is usually not a problem, it can introduce unnecessary method call overhead, especially in performance-critical applications. Inline properties help optimize performance by removing this overhead.

Syntax of Inline Properties

To make a property’s accessor inline, you use the inline modifier with the getter or setter:

Kotlin
class User(val firstName: String, val lastName: String) {
    val fullName: String
        inline get() = "$firstName $lastName"
}

fun main() {
    val user = User("amol", "pawar")
    println(user.fullName)  // Output: amol pawar
}

Here,

  • The fullName property has a custom getter that concatenates firstName and lastName.
  • The inline keyword ensures that when fullName is accessed, the compiler replaces the function call with its actual expression.
  • This improves performance by avoiding a method call at runtime.

How Inline Properties Improve Performance

Reduces Method Call Overhead

When a property accessor is inlined, the function call is replaced with the actual code. This removes the overhead of method calls, reducing execution time.

Without Inline Properties

Kotlin
class Rectangle(val width: Int, val height: Int) {
    val area: Int
        get() = width * height
}

fun main() {
    val rect = Rectangle(5, 10)
    println(rect.area)  // Generates a method call
}
  • Here, area is accessed using a generated getter function, which results in a method call.

With Inline Properties

Kotlin
class Rectangle(val width: Int, val height: Int) {
    val area: Int
        inline get() = width * height
}

fun main() {
    val rect = Rectangle(5, 10)
    println(rect.area)  // No method call, inlined at compile-time
}
  • The getter is inlined, meaning the multiplication happens directly where area is accessed, eliminating an extra function call.

Better Performance in Loops

If a property is accessed multiple times in a loop, an inline getter prevents redundant function calls, optimizing performance.

Kotlin
class Person(val age: Int) {
    val isAdult: Boolean
        inline get() = age >= 18
}

fun main() {
    val people = List(1_000_000) { Person(it % 50) }
    val adults = people.count { it.isAdult }  // More efficient with inline properties
    println("Number of adults: $adults")
}
  • With inline properties, isAdult is evaluated without generating function calls in each iteration, making large computations faster.

Reduces Bytecode Size

Inlining properties reduces the number of generated methods, resulting in smaller bytecode size and potentially lower memory usage.

When to Use Inline Properties

They are beneficial when:

  • The property is frequently accessed and has a simple getter or setter.
  • You want to optimize performance in high-frequency operations like loops.
  • You need to eliminate function call overhead for small computations.

However, avoid using them when:

  • The getter or setter contains complex logic.
  • The property returns large objects (inlining could increase code size).
  • The function involves recursion (since inline functions cannot be recursive).

Best Practices for Inline Properties

  1. Use them for lightweight operations — Keep the logic simple to maximize performance gains.
  2. Avoid inline properties with large return types — This can lead to increased bytecode size.
  3. Test performance improvements — Profile your code to ensure that inlining provides actual benefits.
  4. Be mindful of code readability — Excessive inlining can make debugging harder.

Explore the complete breakdown here: [Main Article URL]

Conclusion

Inline properties in Kotlin are a simple yet powerful feature that can improve performance by removing method call overhead, reducing bytecode size, and optimizing loops. While they should be used wisely, they offer significant benefits in performance-critical applications.

By understanding and leveraging inline properties, you can write more efficient Kotlin code, ensuring faster execution and better resource utilization.

stress testing

Stress Testing in Concurrent Programming (Kotlin): A Deep Dive

In software development, ensuring that applications run smoothly under normal conditions isn’t enough. Systems often face extreme workloads, concurrent processing, and unexpected spikes in demand. This is where stress testing comes into play.

Stress testing helps uncover performance bottlenecks, concurrency issues, and system stability problems that might not be evident under standard usage.

In this blog, we’ll dive deep into what stress testing is, why it’s important, and how it can help identify concurrency issues in multi-threaded applications. We’ll also explore how to fix race conditions using atomic variables in Kotlin and discuss best practices for stress testing.

What Is Stress Testing?

Stress testing is a technique used to evaluate how an application behaves under extreme conditions. This could involve:

  • High CPU usage
  • Memory exhaustion
  • Concurrent execution of multiple threads
  • Processing large amounts of data

The goal is to identify points of failure, performance degradation, or unexpected behavior that might not surface under normal conditions.

Key Objectives of Stress Testing

Detect Concurrency Issues (Race Conditions, Deadlocks, Thread Starvation)

  • Ensures that shared resources are managed correctly in a multi-threaded environment.

Measure System Stability Under High Load

  • Determines if the application remains functional and doesn’t crash or slow down under stress.

Identify Performance Bottlenecks

  • Highlights areas where performance can degrade when the system is heavily loaded.

Ensure Correctness in Edge Cases

  • Helps expose unpredictable behaviors that don’t appear during regular execution.

Concurrency Issues in Multi-Threaded Applications

Concurrency bugs are notoriously difficult to detect because they often appear only under high load or specific timing conditions. One of the most common issues in concurrent programming is race conditions.

Example: Race Condition in Kotlin

Consider a shared counter variable accessed by multiple threads:

Kotlin
var sharedCount = 0

fun main() {
    val workers = List(1000) {
        Thread { sharedCount++ }
    }
    
    workers.forEach { it.start() }
    workers.forEach { it.join() }
    
    println(sharedCount) // Unpredictable result
}

Why Is This Problematic?

  • The sharedCount++ operation is not atomic (it consists of three steps: read, increment, and write).
  • Multiple threads may read the same value, increment it, and write back an incorrect value.
  • Due to context switching, some increments are lost, leading to an unpredictable final result.

Expected vs. Actual Output

Expected Result (In Ideal Case): 1000

but in most cases, 

Actual Result (Most Cases): Less than 1000 due to lost updates.

Detecting This Issue with a Stress Test

To reliably expose the race condition, increase the number of threads and iterations:

Kotlin
var sharedCount = 0

fun main() {
    val workers = List(10000) {
        Thread {
            repeat(100) { sharedCount++ }
        }
    }
    
    workers.forEach { it.start() }
    workers.forEach { it.join() }
    
    println(sharedCount) // Unpredictable, usually much less than 1,000,000
}

How to Fix This? Using Atomic Variables

To ensure correctness, Kotlin provides AtomicInteger, which guarantees atomicity of operations.

Kotlin
import java.util.concurrent.atomic.AtomicInteger

val sharedCount = AtomicInteger(0)

fun main() {
    val workers = List(10000) {
        Thread {
            repeat(100) { sharedCount.incrementAndGet() }
        }
    }

    workers.forEach { it.start() }
    workers.forEach { it.join() }

    println(sharedCount.get()) // Always 1,000,000
}

Why Does AtomicInteger Work?

  • incrementAndGet() is atomic, meaning it ensures that updates occur without interference from other threads.
  • No values are lost, and the result is always deterministic and correct.

Other Common Stress Testing Scenarios

Deadlocks

A deadlock occurs when two or more threads are blocked forever, each waiting for the other to release a resource.

Example: Deadlock Scenario

Kotlin
val lock1 = Any()
val lock2 = Any()

fun main() {
    val thread1 = Thread {
        synchronized(lock1) {
            Thread.sleep(100)
            synchronized(lock2) {
                println("Thread 1 acquired both locks")
            }
        }
    }

    val thread2 = Thread {
        synchronized(lock2) {
            Thread.sleep(100)
            synchronized(lock1) {
                println("Thread 2 acquired both locks")
            }
        }
    }

    thread1.start()
    thread2.start()

    thread1.join()
    thread2.join()
}

Result: The program will hang indefinitely because each thread is waiting for the other to release a lock.

Solution: Always acquire locks in a consistent order to prevent circular waiting and potential deadlocks. If possible, use timeouts or lock hierarchies to further minimize the risk.

Best Practices for Stress Testing

Test Under High Load

  • Simulate thousands or millions of concurrent operations to uncover hidden issues.

Use Thread-Safe Data Structures

  • Kotlin provides AtomicInteger, ConcurrentHashMap, and CopyOnWriteArrayList for safer multi-threading.

Monitor Performance Metrics

  • Use profiling tools like VisualVM or Kotlin Coroutines Debugging tools to track CPU, memory, and execution time during stress tests.

Run Tests Repeatedly

  • Some concurrency bugs appear only occasionally, so rerun tests multiple times.

Conclusion

Stress testing is a crucial technique for ensuring software stability, performance, and correctness under extreme conditions. It helps identify concurrency issues like race conditions and deadlocks that might not be obvious during normal execution.

By using atomic variables and thread-safe practices, developers can write more reliable multi-threaded applications. If you’re building high-performance or concurrent software, incorporating stress testing in your workflow will save you from unexpected failures and unpredictable behavior in production.

Reversing Words in kotlin String

Reversing Words in a String Using Kotlin: A Detailed Guide

Reversing words in a sentence is a common programming task often used in coding interviews and algorithm-based challenges. In this blog, we’ll break down a Kotlin function that reverses the order of words in a given string. We’ll analyze each part of the code, identify potential improvements, and present an optimized version.

Reversing Words: Problem Statement

Given an input string containing multiple words separated by spaces, we need to reverse the order of words while maintaining their original form.

Input:

Kotlin
"Hello India Pune World"

Output:

Kotlin
"World Pune India Hello"

Understanding the Kotlin Code

Let’s analyze the following Kotlin function that reverses the order of words in a string:

Kotlin
fun reverseInputStatement(input: String): String {
    val wordList = input.split(" ")
    val mutableWordList = wordList.toMutableList()
    
    var indexFromEnd = mutableWordList.size - 1
    
    for (indexFromStart in mutableWordList.indices) {
        if (indexFromStart < indexFromEnd) {
            val temp = mutableWordList[indexFromStart]
            mutableWordList[indexFromStart] = mutableWordList[indexFromEnd]
            mutableWordList[indexFromEnd] = temp
        }
        indexFromEnd -= 1
    }
    
    return mutableWordList.toString()
}

Step-by-Step Breakdown

Step 1: Splitting the Input String into Words

Kotlin
val wordList = input.split(" ")
  • The split(" ") function divides the input string into a list of words based on spaces.
  • For the input “Hello India Pune World”, the output will be:
  • ["Hello", "India", "Pune", "World"]

Step 2: Converting to a Mutable List

Kotlin
val mutableWordList = wordList.toMutableList()   
  • Since lists in Kotlin are immutable by default, we convert it to a mutable list to allow modifications.

Step 3: Swapping Words to Reverse Their Order

Kotlin
var indexFromEnd = mutableWordList.size - 1
  • indexFromEnd is initialized to the last index of the list.

The loop performs word swaps to reverse the order:

Kotlin
for (indexFromStart in mutableWordList.indices) {
    if (indexFromStart < indexFromEnd) {
        val temp = mutableWordList[indexFromStart]
        mutableWordList[indexFromStart] = mutableWordList[indexFromEnd]
        mutableWordList[indexFromEnd] = temp
    }
    indexFromEnd -= 1
}

Here,

  • The loop iterates through the list from both the beginning (indexFromStart) and the end (indexFromEnd).
  • The words are swapped until they meet in the middle.

Here is the how the list changes at each iteration:

Before swapping: ["Hello", "India", "Pune", "World"]

  • Step 1: Swap Hello and World["World", "India", "Pune", "Hello"]
  • Step 2: Swap India and Pune["World", "Pune", "India", "Hello"]

Loop stops as words are fully reversed.

Step 4: Converting Back to a String

Kotlin
return mutableWordList.toString()

This returns the reversed list, but the output will be formatted as:

Kotlin
[World, pune, india, Hello]

This isn’t a properly formatted sentence, so let’s fix this issue.

Optimizing the Code

The existing function works, but it can be significantly simplified using Kotlin’s built-in functions:

Kotlin
fun reverseInputStatement(input: String): String {
    return input.split(" ").reversed().joinToString(" ")
}

Why is This Better?

  • split(" "): Splits the input string into a list of words.
  • reversed(): Reverses the list.
  • joinToString(" "): Joins the list back into a properly formatted string.
  • More readable and concise compared to manually swapping elements.

Final Output

For the input:

Kotlin
"Hello India Pune World"

The output will be:

Kotlin
"World Pune India Hello"

Key Takeaways

  1. Use Kotlin’s built-in functions (split(), reversed(), joinToString()) for cleaner and more efficient code.
  2. Avoid unnecessary manual swapping unless specifically required.
  3. Understand how lists work — mutable and immutable lists impact how you modify data in Kotlin.
  4. Code readability is important — the optimized version is much easier to understand and maintain.

Conclusion

Reversing words in a string is a simple yet insightful exercise in Kotlin. The initial approach using a loop and swapping elements works but is not the most efficient solution. By leveraging Kotlin’s built-in functions, we can achieve the same result with cleaner and more readable code.

Understanding such basic transformations is crucial for improving problem-solving skills, especially in coding interviews and real-world applications.

tailrec modifier

How Kotlin’s tailrec Modifier Optimizes Recursive Functions

Recursion is a powerful concept in programming that allows functions to call themselves to solve problems. However, recursive functions can sometimes lead to stack overflow errors if they have deep recursion levels. Kotlin provides the tailrec modifier to optimize recursive functions and convert them into an efficient iterative version under the hood. This helps in...

Membership Required

You must be a member to access this content.

View Membership Levels

Already a member? Log in here
Linked List

Fearlessly Conquer Linked List Data Structures in Kotlin: A Beginner-Friendly Guide

If you’re learning Kotlin and want to understand how data structures work, linked lists are a fundamental concept worth mastering. A linked list is a collection of values arranged in a linear, unidirectional sequence. Compared to contiguous storage options like arrays, linked lists offer several theoretical advantages, such as constant-time insertion and removal from the front of the list, along with other reliable performance characteristics.

In this blog, we’ll cover everything you need to know about linked lists in Kotlin — including what they are, how they work, and how to implement them, with clear explanations and code examples.

What is a Linked List?

A Linked List is a data structure consisting of a sequence of elements, called nodes.

Each node has two components:

  • Data: The value we want to store.
  • Next: A reference to the next node in the sequence.

Unlike arrays, Linked Lists are dynamic in size, offering efficient insertions and deletions at any position in the list.

In a linked list, each node stores a value and points to the next node in the chain. The last node in the sequence points to “null,” indicating the end of the list.

Linked lists have several advantages over arrays or ArrayLists in Kotlin:

  • Quick insertions and removals at the front of the list.
  • Consistent performance for operations, especially for inserting or removing elements anywhere in the list.

Types of Linked Lists

  1. Singly Linked List – Each node points to the next node in the sequence (we’ll focus on this one & only for insertion operations).
  2. Doubly Linked List – Each node has a reference to both the next and the previous node.
  3. Circular Linked List – The last node points back to the first node, forming a loop.

Why Use Linked Lists?

Before we dive into the code, let’s understand why we might choose Linked Lists over arrays:

  1. Dynamic Size – No need to specify a fixed size upfront.
  2. Efficient Insertions/Deletions – Adding or removing elements doesn’t require shifting other elements.
  3. Memory Efficiency – Uses only as much memory as needed.

However, Linked Lists have their trade-offs. Accessing elements is slower compared to arrays because you can’t directly access an element by an index – you have to traverse the list.

Building a Singly Linked List in Kotlin

Now that we understand what Linked Lists are, let’s build one step-by-step in Kotlin! We’ll create the following:

  1. Node Class – Represents each element in the list.
  2. LinkedList Class – Manages the nodes and provides functionality to add, remove, and display elements.

Defining the Node Class

Each node needs to store data and a reference to the next node. Here’s our Node class:

Kotlin
// We define a node of the linked list as a data class, where it holds a value and a reference to the next node.

data class Node<T>(var value: T, var next: Node<T>? = null) {
    override fun toString(): String {
        return if (next != null) {
            "$value -> ${next.toString()}"
        } else {
            "$value"
        }
    }
}

fun main() {
    val node1 = Node(value = 1)
    val node2 = Node(value = 2)
    val node3 = Node(value = 3)

    node1.next = node2
    node2.next = node3   //here node3 points to null at last, as per our code we only print its value
    println(node1)
}

//OUTPUT

1 -> 2 -> 3

Here, we defined a generic Node class for a linked list in Kotlin. Each Node holds a value of any type (T) and a reference to the next Node, which can be null. The toString() method provides a custom string representation for the node, recursively displaying the value of the node followed by the values of subsequent nodes, separated by ->. If the node is the last in the list, it simply shows its value.

Have you observed how we constructed the list above? We essentially created a chain of nodes by linking their ‘next’ references. However, building lists in this manner becomes impractical as the list grows larger. To address this, we can use a LinkedList, which simplifies managing the nodes and makes the list easier to work with. Let’s explore how we can implement this in Kotlin.

Creating the LinkedList Class

Let’s create our LinkedList class and add core functionalities like adding nodes and displaying the list.

Basically, a linked list has a ‘head’ (the first node) and a ‘tail’ (the last node). In a singly linked list, we usually only deal with the head node, although the tail node can also be relevant, especially when adding elements at the end. The tail node becomes more important in doubly linked lists or circular linked lists, where it supports bidirectional traversal or maintains circular references. However, here, we will use both nodes in a singly linked list.

Kotlin
class LinkedList<T> {
    private var head: Node<T>? = null
    private var tail: Node<T>? = null
    private var size = 0

    fun isEmpty(): Boolean {
        return size == 0
    }
     // to print nodes in linkedlist
    override fun toString(): String {
        if (isEmpty()) {
            return "Empty list"
        } else {
            return head.toString()
        }
    }
}

Here, a linked list has a ‘head’ (the first node) and a ‘tail’ (the last node). We’ll also store the list’s size in a ‘size’ property.


Adding values to the list

Now, let’s develop a way to manage the nodes in our list and focus on adding values. There are three common approaches to inserting values into a linked list, each offering different performance benefits:

  • Push: Inserts a value at the start of the list.
  • Append: Adds a value to the end of the list.
  • Insert: Places a value after a specified node in the list.

We’ll implement these methods step by step and analyze their performance.

Push Operations

Inserting a value at the beginning of the list is called a push operation or head-first insertion. The implementation for this is remarkably straightforward.

To achieve this, add the following method to our LinkedList class:

Kotlin
// This function is used to insert a new element at the first position in the linked list.
// This is a head-first insertion.
fun pushAtHead(value: T) {
    head = Node(value, next = head) // The previous head value (i.e., null if the list is empty) is assigned to the next node.

    // If the list is empty (i.e., tail is null), we add the new node and assign it to the tail.
    // If the tail is not null, we add the new element and assign it to the head (as done above).
    if (tail == null) {
        tail = head
    }

    size++ // Whenever a new node is added, the size is increased by one.
}

What happens here is that when we push into an empty list, the new node becomes both the head and the tail. Since the list now contains one node, we increase the size.

We will run this code, but I have a question for you: Should we always run this code in the main function? I mean, should we always copy and paste it into Android Studio or Kotlin Playground? What if, in the future, we want to revisit or refer to it? The answer is simple—we can use special Kotlin features like infix functions and higher-order functions. By doing this, we can create a Runner class and add different functionalities using infix and higher-order functions. This approach will make the code easier to understand and manage in the future. Without further delay, let’s implement it, and I’ll explain how it works.

First of all, create a new file and name it LinkedListRunner.kt. Then, add the following code:

Kotlin
fun main() {
    // Push operation at the first position in the linked list.
    "push" example {

        val list = LinkedList<String>()

        list.pushAtHead("amol")
        list.pushAtHead("satara")
        list.pushAtHead("bajirao")
        list.pushAtHead("pune")

        println(list)

    }
}

// This infix function is used to print an example description and then execute the provided function.
infix fun String.example(function: () -> Unit) {
    println("----- Example of $this -----")
    function()
    println()
}

Here,

Infix Function (“push” example{..})

An infix function allows you to call a function in a cleaner and more readable way, without parentheses and dots. In this case, "push" example {...} is an example of an infix function.

How it works:

  • "push" is a string, and when combined with example, it invokes the example function.
  • The infix keyword enables the usage of this function in a special syntax: a infixFun b instead of a.infixFun(b).
  • In this function, this refers to the string "push" and is used to print a custom message (like "----- Example of push -----").

Higher-Order Function (String.example())

The example function is also a higher-order function because it takes another function as a parameter.

How it works:

  • The example function takes a lambda expression (function: () -> Unit) as a parameter. This is a function that does not take any arguments and returns nothing (Unit is equivalent to void).
  • Inside example, the function passed (function()) is executed.
  • In your code, the block of code inside {} (which modifies the linked list) is the function being passed to example as a lambda.

So, finally, 

  • Infix Function: The example function is used with infix notation, making the code more readable. It prints the description "----- Example of push -----" and then runs the provided code block.
  • Higher-Order Function: The example function is a higher-order function because it accepts a lambda function as a parameter and executes it inside its body.

Execution Flow will be…,

  • The string "push" calls the infix function example.
  • The block of code inside {} (which adds items to the linked list) is passed as a lambda to the example function.
  • example prints the message "----- Example of push -----", runs the lambda function to manipulate the linked list, and prints the result.
Kotlin
----- Example of push -----
pune -> bajirao -> satara -> amol

This approach is good, but we can improve it further. By using the fluent interface pattern, you can chain multiple push() calls together. To do this, modify the push() method to return LinkedList<T>. Then, add return this at the end, so it returns the list after adding the new element.

Create a new method in LinkedList.kt. The method should now look like this:

Kotlin
// Push operation using chaining.
// Head-first insertion using chaining.
fun pushingAtHead(value: T): LinkedList<T> {
    head = Node(value, next = head) // The previous head value is assigned to the next node.
    
    // If the list is empty (i.e., tail is null), assign the new node to the tail.
    if (tail == null) {
        tail = head
    }
    
    size++ // Increment the size of the list whenever a new node is added.
    return this // Return the updated list to enable chaining.
}

In the main() function of the LinkedListRunner.kt file, you can either create a new method or update the existing one to use the return value of pushAtHead().

Kotlin
"fluent interface for chain pushing" example
    {
        val list = LinkedList<Int>()
        list.pushingAtHead(2).pushingAtHead(3).pushingAtHead(7).pushingAtHead(1)
        println(list)
    }

//Output 
 
----- Example of fluent interface chain pushing -----
1 -> 7 -> 3 -> 2

That’s better..! Now, you can easily add multiple elements to the beginning of the list.

Wait a moment…! What we see here might seem unclear at first, but is it really necessary? Yes, it is! That’s why I’ve covered it here. As we go further, you’ll get used to it, and things will become much clearer.

Append Operations

Next, we’ll focus on the append operation, which adds a value to the end of the list (also known as tail-end insertion).

In LinkedList.kt, we’ll add the following code right below the push() method:

Kotlin
// Append a new node at the last position of the linked list.
// Tail-end insertion.
fun appendAtTail(value: T) {
    // Example: 1 -> 2 -> 3 -> 4
    if (isEmpty()) {
        pushAtHead(value) // If the list is empty, add the new node at the head.
        return
    }
    
    // If the list is not empty, link the new node to the tail and update the tail.
    tail?.next = Node(value)
    tail = tail?.next // Update the tail to the newly added node.
    
    size++ // Increment the size of the list when a new node is added.
}

This code is quite simple:

  1. As before, if the list is empty, we need to set both the head and the tail to the new node. Since appending to an empty list is the same as pushing, we can use the push method to handle this for us.
  2. For all other cases, we create a new node after the current tail node. The tail won’t be null here because we’ve already handled the empty list case earlier in the code.
  3. Since this is a tail-end insertion, the new node becomes the tail of the list.

Now, go back to LinkedListRunner.kt and add the following code at the bottom of main():

Kotlin
"append" example{
        val list = LinkedList<Int>()

        list.appendAtTail(1)
        list.appendAtTail(2)
        list.appendAtTail(3)
        list.appendAtTail(4)

        println(list)
    }
    
    
    //Output
    ----- Example of append -----
    1 -> 2 -> 3 -> 4

You can apply the technique you used for push() to create a fluent interface for append() as well.

Kotlin
// Append using chaining.
// Tail-end insertion using chaining.
fun appendingAtTail(value: T): LinkedList<T> {
    if (isEmpty()) {
        pushAtHead(value) // If the list is empty, add the new node at the head.
        return this
    }

    // If the list is not empty, link the new node to the tail and update the tail.
    tail?.next = Node(value)
    tail = tail?.next // Update the tail to the newly added node.

    return this // Return the updated list to enable chaining.
}

Whether you find it useful or not, just think about the possibilities of chaining both push and append together. Or, feel free to have some fun experimenting with it.

Insert Operations

The third and final operation for adding values is insert(afterNode: Node<T>). This operation allows us to insert a value at a specific position in the list, and it involves two steps:

  1. Locating the node where the value should be inserted.
  2. Inserting the new node right after the located node.

First, we’ll write the code to find the node where we want to insert the value.

In LinkedList.kt, add the following code just below the append() method:

Kotlin
// Get the node at the specified index.
fun nodeAt(index: Int): Node<T>? {
    var currentNode = head
    var currentIndex = 0

    // Traverse the list until the node at the specified index is found.
    while (currentNode != null && currentIndex < index) {
        currentNode = currentNode.next
        currentIndex++
    }

    return currentNode // Return the node at the specified index, or null if not found.
}

nodeAt() retrieves a node from the list based on the given index. Since we can only start from the head node, we need to traverse the list step by step. Here’s how it works:

  1. We start with a reference to the head node and keep track of the number of steps taken.
  2. Using a while loop, we move through the list until we reach the desired index. If the list is empty or the index is out of range, it will return null.

Next, we will insert the new node. To do this, add the following method below nodeAt().

Kotlin
// Insert a new node with the specified value after the given node.
// If the node is the tail, the new node is appended at the tail.
fun insertAt(value: T, afterNode: Node<T>): Node<T>? {
    if (tail == afterNode) {
        appendAtTail(value) // If afterNode is the tail, append the new node at the tail.
        return tail!! // Return the updated tail.
    }

    // Create a new node and link it to the node after the given node.
    val newNode = Node(value = value, next = afterNode.next)
    afterNode.next = newNode // Update the next pointer of the afterNode to the new node.
    
    size++ // Increment the size of the list.
    return newNode // Return the newly inserted node.
}

Here’s what we’ve done:

  1. If the method is called with the tail node, we use the append method, which updates the tail.
  2. Otherwise, we create a new node and link it to the next node in the list.
  3. We update the specified node to point to the new node.

To test this, go to LinkedListRunner.kt and add the following code at the bottom of main().

Kotlin
"linked list insert At perticular index " example {

        val list = LinkedList<Int>()
        list.pushAtHead(1)
        list.pushAtHead(2)
        list.pushAtHead(3)

        println("list before insert $list")

        var middleNode = list.nodeAt(1)!!

        for(i in 1..3){
            middleNode = list.insertAt(-1 * i, middleNode)!!
        }

        println("After inserting $list")
    }
    
    
    //Output
    ----- Example of linked list insert At perticular index  -----
    list before insert 3 -> 2 -> 1
    After inserting 3 -> 2 -> -1 -> -2 -> -3 -> 1

Great job! You’ve made excellent progress. To recap, you’ve implemented the three operations for adding values to a linked list, as well as a method to find a node at a specific index.

Conclusion

We’ve explored the key insertion operations in linked lists, along with the foundational concepts and structure that make them an essential part of data management. Understanding these operations provides a solid base for working with linked lists in various scenarios. As you continue to practice, you’ll gain more proficiency in implementing and manipulating linked lists, further enhancing your problem-solving skills in Kotlin.

error: Content is protected !!