Code RecipeJan 3, 20229 min readCaching - System Design Building BlocksA cache is a hardware or software component that acts as a temporary storage allowing fast access to data stored in it.
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.