Hey,
I'm Kamruzaman Shojib and I'm a front-end developer. I love to talk about tech mostly I'll be writing about JavaScript and trying to help the community.
Nothing here yet.
Hey everyone, we will solve how we can find the Middle of the Linked List and solve this problem using a pointers approach. Step 1: Initialize Pointers We are going to initialize the left and right pointers at the beginning of our beginning of our Li...

Hey everyone, Today we will solve Find the Student that Will Replace the Chalk - Leet Code 1894 in three simple steps. Calculate the total chalk needed for one full round Reduce k modulo total_chalk Iterate through the array to find the first stud...

Hey everyone, Today we will solve LeetCode 344: Reverse String using two pointers approach. Step 1: Initialize Pointerswe are going to initialize the low at index 0, and the high at the last index. def reverseString(s): low = 0 high = len(s) ...
