Code RecipeJan 24, 20227 min read3 Sum - Leetcode #15 Short & Simple SolutionGiven 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
Code RecipeDec 31, 20214 min readReverse Integer - Leetcode #7 Short & Simple SolutionGiven 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
Code RecipeDec 30, 20216 min readPalindrome Number - Leetcode #9 Short & Simple SolutionGiven an integer x, return true if x is a palindrome integer. An integer is a palindrome when it reads the same backward as forward.