top of page


974. Subarray Sums Divisible by K - LeetCode Fastest Solution
Given an array nums and an integer k, return the number of non-empty subarrays that have a sum divisible by k. A subarray is a contiguous

Ashwin Shirva
Feb 6, 20256 min read
Â
Â
Â


2574. Left and Right Sum Differences - LeetCode Best Solution
Given an integer array nums return an array result such that result.length == nums.length and result[i] is the absolute difference between

Code Recipe
Jan 31, 20254 min read
Â
Â
Â


930. Binary Subarrays With Sum - LeetCode Fastest Solution
Given a binary array nums and an integer goal, return the number of subarrays with a sum equal to goal. A subarray is a contiguous part of

Ashwin Shirva
Jan 29, 20255 min read
Â
Â
Â


560. Subarray Sum Equals K - LeetCode Fastest Solution
Given an integer array nums and an integer k, return the total number of subarrays in nums whose sum is equal to k. A subarray is a

Ashwin Shirva
Jan 25, 20255 min read
Â
Â
Â


1991. Find the Middle Index in Array - LeetCode Fastest Solution
Given an integer array nums, find the middle index in array, middleIndex. Note that you must find the leftmost middle index in nums array.

Code Recipe
Jan 23, 20254 min read
Â
Â
Â


Coding Patterns - Prefix Sum Pattern
Prefix sum is an efficient and powerful technique, often useful in coding interviews and competitive coding. A prefix sum is the combined

Code Recipe
Jan 21, 20255 min read
Â
Â
Â
bottom of page
