top of page


112. Path Sum - LeetCode Fastest Solution
Given the root node of a binary tree and an integer targetSum, return true if the tree has a path from root-to-leaf such that the sum of all
Code Recipe
Jan 84 min read
20 views
1 comment


680. Valid Palindrome II - LeetCode Fastest Solution
Given string s, return true if it is possible to make s a palindrome by removing at-most one character from s. A string is a palindrome if
Code Recipe
Jan 64 min read
37 views
1 comment


125. Valid Palindrome - LeetCode Fastest Solution
Given a string s, return true if it is a palindrome, otherwise return false. A given sentence is a palindrome if, after converting all
Code Recipe
Jan 53 min read
65 views
1 comment


260. Single Number III - LeetCode Fastest Solution
Given an integer array nums, every element in nums appears exactly twice except for two numbers that appear only once. Find these two number
Code Recipe
Jan 45 min read
34 views
1 comment


136. Single Number - LeetCode Fastest Solution
Given a non-empty array of unsorted integers nums, every element in nums appears twice except for one. Find that single number.
Code Recipe
Jan 33 min read
52 views
1 comment


1189. Maximum Number of Balloons - LeetCode Fastest Solution
Given a input string text, use the characters of text to form as many instances of the word "balloon" as possible. You are only allowed to
Code Recipe
Jan 24 min read
90 views
1 comment
bottom of page