LeetCode wizard with 75 conquered challenges under my belt. Turning algorithm nightmares into "Aha!" moments, one explanation at a time. Join me to level up your coding skills – from interviews to real-world application!

Author avatar
Array Alchemist
title
              unisala image

Signature of Array Alchemist

Author avatar
Array AlchemistFeb 21, 2025
Exploring Backtracking and Memoization for Decoding Digit Strings

You have intercepted a secret message encoded as a string of numbers. The message is decoded via the following mapping:"1" -> 'A'"2" -> 'B'"25"

5 min read·General
Article cover
Author avatar
Array AlchemistFeb 20, 2025
Understanding Palindromes: Brute Force vs Expand Around Center Algorithms | Optimizing Time Complexity | n^3 vs n^2

The algorithm discussed in this thread expand around center approach is a powerful technique that can solve a variety of problems related to pali

7 min read·General
Article cover
Author avatar
Array AlchemistJan 22, 2025
Construct Binary Tree from Preorder & Inorder

Construct Binary Tree from Preorder and Inorder Traversal You are given two integer arrays preorder and inorder.preorder is the preorder tra

2 min read·General
Article cover
Author avatar
Array AlchemistJan 15, 2025
LRU Cache | Using Doubly Linked List & Map

A normal linked list:{ this.key this.val this.next } What Is a Doubly Linked List?A doubly linked list is a type of data structure made up of nodes. Each node c

3 min read·General
Article cover
Author avatar
Array AlchemistJan 12, 2025
Foundations of Writer Analytics for Improvement

As a writer, I want to track and improve my writing habits so I can achieve my goals effectively and enjoy the process. As a writer, I want to see my basic writ

4 min read·General
Article cover
Author avatar
Array AlchemistDec 29, 2024
Time Based Key-Value Store | Leetcode | Binary Search

Design a time-based key-value data structure that can store multiple values for the same key at different time stamps and retrieve the key's value at a certain

4 min read·General
Author avatar
Array AlchemistNov 30, 2024
Count Maximum Teams | AMAZON SDE | Online Assessment

In this coding challenge, we have a bunch of coders taking part in a competition; each coder has a certain skill level represented as skill[i]. To make the

2 min read·General
Author avatar
Array AlchemistNov 28, 2024
10 Key data Structures we use Every Day

Linked List:  A sequential data structure where each element (node) points to the next, forming a chain.Array: A collection of elements, usually of the sa

2 min read·General
Article cover
Author avatar
Array AlchemistNov 24, 2024
Understanding RESTful APIs: A Guide to Implementation and System Design

REST is the most common communication standard between computers over internet.What is it? Why is this so popular?Api stands for application programming interfa

5 min read·General
Article cover
Author avatar
Array AlchemistNov 24, 2024
Latency numbers | System Design

In this note, we will develop an intuition on some of the common latency numbers. Which are very crucial for system design.It's not critical to know the exact n

4 min read·General
Article cover
Author avatar
Array AlchemistAug 28, 2024
Combination Sum IV. Blind 75 question. Dynamic Programming

Given an array of distinct integers nums and a target integer target, return the number of possible combinations that add up to&nb

4 min read·General
Article cover
Author avatar
Array AlchemistAug 26, 2024
Cracking the Word Break Problem.

First let's understand why this problem is important to understand?and that we know the technique to solve it.Scenario:You're a codebreaker for the Allied force

4 min read·General
Article cover
Author avatar
Array AlchemistAug 23, 2024
DNA to Code: Mastering the Longest Common Subsequence Algorithm.

Before we solve this problem let's understand why this algorithm i.e longest common subsequence is important?To address Longest Common Subsequence i will use LC

6 min read·General
Article cover
Author avatar
Array AlchemistAug 22, 2024
Longest Increasing Subsequence. Blind 75. Dynamic Programming.

Given an integer array nums, return the length of the longest strictly increasing subsequenceExample 1:Input: nums = [10,9,2,5,3,7,101,18] O

3 min read·General
Article cover
Author avatar
Array AlchemistAug 19, 2024
Dynamic Programming. Coin Change

You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of mone

6 min read·General
Article cover
Author avatar
Array AlchemistAug 14, 2024
Dynamic Programming. Climbing Stairs.

You are climbing a staircase. It takes n steps to reach the top.Each time you can either climb 1 or 2 steps. In how many distinct

5 min read·General
Article cover
Author avatar
Array AlchemistAug 1, 2024
Add two numbers without using + or - operator

Sum of Two Integers without Using + or - operatorsBlind 75. BinaryGiven two integers a and b, return the sum of the two integers without usi

4 min read·General
Article cover
Author avatar
Array AlchemistJul 31, 2024
Container with Most WaterBlind 75. Array QuestionYou are given an integer array height of

Container with Most WaterBlind 75. Array QuestionYou are given an integer array height of length n. There are n vertical lines drawn su

2 min read·General
Article cover
Author avatar
Array AlchemistJul 17, 2024
3Sum#Leetcode #blind75 #arrayHintGiven an integer array nums, return all the triplets [nums[i],

3Sum#Leetcode #blind75 #arrayHintGiven an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k,

4 min read·General
Article cover
Author avatar
Array AlchemistJul 14, 2024
#8 Search in Rotated Sorted ArrayBlind 75. ArraySearch in Rotated Sorted ArraySolvedThere is an inte

#8 Search in Rotated Sorted ArrayBlind 75. ArraySearch in Rotated Sorted ArraySolvedThere is an integer array nums sorted in ascending order (with distinct valu

2 min read·General
Article cover
Author avatar
Array AlchemistJul 12, 2024
#6 Maximum Product SubarrayBlind 75. Array.Given an integer array nums, find a subarray th

#6 Maximum Product SubarrayBlind 75. Array.Given an integer array nums, find a subarray that has the largest product, and return the product.The test

4 min read·General
Article cover
Author avatar
Array AlchemistJul 11, 2024
#5 Maximum Subarray Blind 75. ArrayImagine you have a lemonade stand and you keep track of your dail

#5 Maximum Subarray Blind 75. ArrayImagine you have a lemonade stand and you keep track of your daily profits over a month. Some days you make money, and some d

3 min read·General
Article cover
Author avatar
Array AlchemistJul 10, 2024
#4 Product of Array Except SelfBlind 75. Array.Given an integer array nums, return an arra

#4 Product of Array Except SelfBlind 75. Array.Given an integer array nums, return an array answer such that answer[i] is equal to

4 min read·General
Article cover
Author avatar
Array AlchemistJul 10, 2024
#3 Contains Duplicate. Blind 75. ArrayGiven an integer array nums, return true if any

#3 Contains Duplicate. Blind 75. ArrayGiven an integer array nums, return true if any value appears at least twice in the array, and re

2 min read·General
Article cover
Author avatar
Array AlchemistJul 9, 2024
Best Time To Buy and Sell Stock.Blind 75. array questions.You are given an array prices where prices

Best Time To Buy and Sell Stock.Blind 75. array questions.You are given an array prices where prices[i] is the price of a given stock on the ith day. You want t

4 min read·General
Article cover