João Esperancinhajesperancinha.hashnode.dev·Jan 9, 2025Kotlin Native and GraalVM - The Story So Far1. Introduction There is a lot of buzz today about a technology that we tend to call Native. Native technology or Native code usually refers to code programmed in C that can be run in one particular system directly without a Virtual Machine after com...Kotlin
Nwosu Promise Okennaokenna.hashnode.dev·Jan 4, 2025ALGORITHMS: Implementing Binary Search Algorithm in JavascriptIntroduction Imagine searching for a word in a dictionary. Would you flip through every single page? Or would you use a smarter approach, like opening to the middle to quickly narrow down where that word might be? This is the elegant power of binary ...13 likes·95 readsData Structures And AlgorithmsJavaScript
Gowshik Ramjavaarrayhacks.hashnode.dev·Jan 3, 2025Mastering Binary Search in Java: A Comprehensive Guide with ExamplesIf you've ever worked with sorted arrays, you’ve probably encountered binary search—a highly efficient way to find elements in a sorted list. Today, we’ll break down how binary search works in Java, using a simple example. By the end of this post, yo...Binary Search Algorithm
Eniola Bakareeniola-bakare.hashnode.dev·Dec 5, 2024A Working Understanding of AlgorithmsAn algorithm is a finite sequence of well-defined instructions, typically used to solve a class of specific problems or to perform a computation. - Wikipedia An algorithm refers to a set of step-by-step instructions to be followed to achieve a partic...13 likes·32 readsA Working Understanding of Data Structures and Algorithms (DSA)algorithms
Kanchan Raikanchanraiii.hashnode.dev·Dec 3, 2024Day 14: 100 Days of DSAWelcome to Day 14 of 100 Days of DSA challenge! Today, I solved five problems focused on binary search. Here's a quick look at the questions I tackled and how I approached them 🤖✨ Check out my GitHub repository for all my solutions and progress. Let...100 Days of DSABinary Search Algorithm
Aaqib Bashir Mirbinary-search.hashnode.dev·Dec 3, 2024Understanding Bubble Sort: The Simplest Sorting AlgorithmBubble Sort is one of the most basic and widely taught sorting algorithms. Although not the most efficient, its simplicity makes it a great starting point for anyone new to algorithms. Let’s dive into the concept, implementation, and analysis of Bubb...Binary Search Algorithm
Kanchan Raikanchanraiii.hashnode.dev·Dec 2, 2024Day 13: 100 Days of DSAWelcome to Day 13 of 100 Days of DSA challenge! Today, I solved five problems focused on binary search. Here's a quick look at the questions I tackled and how I approached them 🤖✨ Check out my GitHub repository for all my solutions and progress. Let...100 Days of DSABinary Search Algorithm
Aaqib Bashir Mirlinear-search.hashnode.dev·Nov 30, 2024Mastering Binary Search: A Beginner's GuideWhen it comes to efficient searching in computer science, binary search stands out as one of the most fundamental and powerful algorithms. It is widely used in a variety of applications where quick retrieval is essential, making it a cornerstone of p...Binary Search Algorithm
Michael Strombergmjstromberg.hashnode.dev·Nov 23, 2024Solving the “Longest Increasing Subsequence” Problem in JavaScriptPhoto by Thomas Serer on Unsplash Tackling algorithmic challenges is a crucial part of coding interviews, particularly for software engineering roles at top tech companies such as Google, Meta, and Amazon. Although these problems may not represent th...AlgorithmsJavaScript
Ekemini Thompsonekeminithompson.hashnode.dev·Nov 21, 2024Algorithms: Binary Search AlgorithmConcept:Binary Search is an efficient algorithm to find the position of a target element in a sorted array. It works by repeatedly dividing the search range in half. If the target is not found in the middle, it determines whether to search in the lef...27 readsdata structures and algorithmAlgorithms Data Structures