Browsing Tag
algorithms
21 posts
Solving LeetCode “5. Longest Palindromic Substring” using Dynamic Programming
Type: Medium Question: Given a string s, return the longest palindromic substring in s. Example 1: Input: s…
DAY 89 – Kadane’s Algorithm
Hey Folks!. Welcome to day 89 of 100DaysOfCode Challenge. We shall be covering the kadane’s algorithm today. Question:…
Product of Array Except Self – LeetCode Java Solution
Hello readers, let’s solve a LeetCode problem today. In this blog, let’s solve the problem Product of Array…
222 Stories To Learn About Algorithms
Let’s learn about Algorithms via these 222 free stories. They are ordered by most time reading created on…
6 Must-Try Coding Problem Websites 💻
Do you know your language? No, really. A lot of us (myself included) can learn the basics of…
The Romance Between Developers and Data Structures
Introduction Have you ever wondered why in most software engineering interviews, candidates are seriously drilled with questions related…
83. Remove Duplicates from Sorted List leetcode solution in java
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; *…
Best Ways to Strip Punctuation from Strings in Python and JavaScript
Why Do you Need to remove punctuation? In various text-processing tasks, it is often necessary to remove punctuation…
Disjoint Set Union heuristics
DSU is one of the most elegant in implementation data structure and I’ve used in my competitive programming…
Challenge Accepted
In my spare time, I like to watch YouTube. Who doesn’t? Recently I watched a video entitled ‘Solve…