top of page
Code Recipe
Jan 24, 20227 min read
3 Sum - Leetcode #15 Short & Simple Solution
Given an array of integers, nums, return all the triplets in the given array nums[i], nums[j], nums[k] such that i != j, i != k, and j != k
81,604 views6 comments
Code Recipe
Dec 31, 20214 min read
Reverse Integer - Leetcode #7 Short & Simple Solution
Given a 32-bit signed integer x, reverse the digits in x and return the result. If after reversing the result goes outside the signed 32-bit
23,819 views1 comment
Code Recipe
Dec 30, 20216 min read
Palindrome Number - Leetcode #9 Short & Simple Solution
Given an integer x, return true if x is a palindrome integer.
An integer is a palindrome when it reads the same backward as forward.
67,716 views7 comments
bottom of page