Deeporion Technologyfull-stack-development-for-modern-businesses.hashnode.dev·Nov 14, 2024Exploring Iterative Development: A Practical Approach for Product SuccessDeveloping a new product from the ground up can be challenging, particularly for startups and small businesses with limited resources. When budgets are tight, every step must count, and there’s little room for error. This is where iterative developme...iterative
Chetan Dattachetan77.hashnode.dev·Jul 28, 2024LL 6 - Reverse Linked ListProblem Given the head of a singly linked list, reverse the list, and return the reversed list. (link) Example 1: Input: head = [1,2,3,4,5] Output: [5,4,3,2,1] Example 2: Input: head = [1,2] Output: [2,1] Example 3: Input: head = [] Output: Solu...LeetcodeSingly Linked List
Raahul Seshadrithephilosopher.tech·Mar 20, 2024Iterative is Not IncrementalCorrelation is not causation, is something that you'll hear often in statistics. Similarly, I think Agile deserves one, Iterative is not Incremental. Before we get into the waterfall vs. agile flame war, let's define what we mean by waterfall. Loosel...agile
Sanya Vermabytebybyte.hashnode.dev·Feb 26, 2024Finding HCF using Java!!HCF(Highest Common Factor), also known as GCD(Greatest Common Divisor) is is the largest positive integer that divides each of the numbers without leaving a remainder. It is widely used in various mathematical and practical applications like Fraction...Euclidean Algorithm
Muhit Khanmuhitkhan.hashnode.dev·Oct 26, 2023Battle of the Algorithms: Loop vs. Recursion in Reversing Linked ListsReversing a linked list is a classic problem in the realm of programming interviews and data structure manipulation. It seems like a simple task, but the way you tackle it can significantly impact your code's efficiency and resource consumption. In t...1 like·56 readsdata structures
Nilesh Saininileshsaini.hashnode.dev·May 23, 2023Merge Two Sorted ListsMerging two sorted linked lists is a common problem in algorithmic coding interviews. The task is to merge the two lists into a single sorted list while maintaining the order of the elements. Although the problem may seem straightforward at first, th...50 reads#linkedlists
Nilesh Saininileshsaini.hashnode.dev·May 22, 2023Reverse Linked ListReversing a linked list is a common problem asked in the interviews. It requires rearranging the pointers of each node to reverse the order of the list. In this article, we will explore the Iterative and Recursive approaches to solve this problem and...42 reads#linkedlists
Xander Billaxanderbilla.hashnode.dev·Sep 15, 2018Mastering Iterative Statements in JavaJava, as a versatile and powerful programming language, provides several tools for developers to efficiently handle repetitive tasks. Iterative statements, also known as loops, are fundamental constructs that allow you to execute a block of code repe...JavaJava