Shen's Developer Diary
Shen's Developer Diary
Follow
Follow
homeNext.jsLeetcodeExperienceLife
Series

Leetcode with Python

In this series, I will be discussing about various Leetcode problems and the ideas or intuitions behind the solutions. Python will be implemented to show how the ideas are transformed to codes.

Articles in this series

Two Sum

Jan 7, 20233 min read

Let's solve the very first problem of Leetcode using Hashmap through Python! · Leetcode problem: https://leetcode.com/problems/two-sum/ Problem...

Two Sum

Container With Most Water

Dec 29, 20225 min read

Let's find out which container can contain the most water through Greedy Algorithm! · Leetcode problem:...

Container With Most Water

Longest Palindromic Substring

Dec 26, 20229 min read

Let's find the longest palindromic substring using Dynamic Programming through Python! · Leetcode problem:...

Longest Palindromic Substring

Longest Substring Without Repeating Characters

Dec 25, 20224 min read

Let's find the longest substring without repeating characters using hashmap and sliding window through Python! · Leetcode problem:...

Longest Substring Without Repeating Characters