Code RecipeDec 22, 20218 min readLongest Substring Without Repeating Characters - Leetcode #3 Short & Simple SolutionThis is a solution to leetcode 3 problem. For a given input string s, return the length of the longest substring in s, without repeating cha
Code RecipeNov 30, 20216 min readTwo Sum - Leetcode #1 Short & Simple SolutionConsider you given an array of integers and a target sum, return indices of two numbers in the array such that they add up to target.