Elton Muteswablog.phaizel.com·Oct 1, 2023Kotlin Tidbit: Loops and RecursionGiven a LinkedList data structure that is defined as: data class LinkedList<T>(val value: T, val next: LinkedList<T>? = null) Each LinkedList entry is a node of the current value and a reference to next which points to another LinkedList with the re...62 readsKotlin
Erman İmerermanimer.hashnode.dev·Jul 27, 2023Tail Call Optimization In ElixirA tail-recursive function executes itself as the last thing. def fun(...) do ... fun(...) end Elixir optimizes tail calls by reusing the last stack frame of the function, thus avoiding the typical stack push and reducing the overhead of crea...103 readsElixir
vivekviveksingh.hashnode.dev·Oct 5, 2022How To Use Tailwind CSS With Reactlet's discuss why Tailwind CSS: What It Is, Why Use It: When coding an application from scratch, you want it to reflect your unique brand, be responsive on any device, and be easy to write and maintain — and those are probably just a few items on you...10 likes·38 readsTailwind CSS
Yash Kumaryashkc2025.hashnode.dev·Oct 3, 2022Everything about Recursion !What is Recursion ? Recursion is the way of making a function call itself. The below diagram shows that the function recurse is calling itself in it's body: def func(): <-- | | (recursive call) | func() ---...93 readswhat is recursion
Shashwat Guptashashwat27.hashnode.dev·Jul 28, 2022"Tail Recursion" - The most unexplored topic.Before we get into the core, let's revise some basics. Recursion : It is a process in which a function repeatedly calls itself until a base condition is not reached or a desired result is not achieved. Base Condition : It is a condition when the func...42 readsRecursion