top of page

Roman to Integer - Short & Simple LeetCode Solution
Convert the given roman numeral into an integer value.

Code Recipe
Feb 26, 20246 min read
165 views
1 comment

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

Code Recipe
Jan 24, 20228 min read
82,258 views
6 comments

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

Code Recipe
Dec 31, 20214 min read
23,896 views
1 comment

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.

Code Recipe
Dec 30, 20216 min read
68,162 views
7 comments

String To Integer - Leetcode #8 Short & Simple Solution
This is a solution to leetcode 8 problem. Implement myAtoi(string s) function, which converts a string to a 32-bit signed integer.

Code Recipe
Dec 29, 20215 min read
15,481 views
0 comments

3. Longest Substring Without Repeating Characters - LeetCode Fastest Solution
Given a string s, find the length of the longest substring without repeating characters. s consists of English letters, digits, symbols and
Code Recipe
Dec 22, 20217 min read
71,919 views
10 comments
bottom of page