Tagged: Kotlin

Koltin Linear Search Algorithm

Linear Search in Kotlin : Pros and Cons

Linear Search in a straightforward searching algorithm used to find an element within a collection, typically an array or a list. Let’s explore linear search in Kotlin with examples....

Why Coroutine Is Lightweight : A Simple Fact

Let’s explore why a coroutine is lightweight and super fast. Coroutines are praised for being quick and nimble. They’re called lightweight because they work differently from regular threads. Let’s...

DSA kotlin

DSA with Kotlin: Where should I start off ?

Learning programming is essential for all developers, but mastering Data Structures and Algorithms (DSA) constitutes a long-term learning process that can be highly beneficial, especially for those extensively involved...

kotlin nested functions

Nested Functions in Kotlin : Example Usage

Nested functions in Kotlin allow developers to organise their code more effectively by defining functions within other functions. This powerful feature enhances code readability and maintainability. In this Kotlin...