Code RecipeDec 29, 20214 min readString To Integer - Leetcode #8 Short & Simple SolutionThis is a solution to leetcode 8 problem. Implement myAtoi(string s) function, which converts a string to a 32-bit signed integer.
Code RecipeDec 24, 20214 min readBubble Sort - Your Sorting 101 GuideAlgorithm Bubble sort is one of the simplest sorting algorithms. Bubble sort works by scanning (passing) the given array multiple times...
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