Code RecipeMar 115 minLongest Common Prefix - LeetCode Fast & Simple SolutionFind the longest common prefix from the given array of strings. Return an empty string "", if no common prefix is found.
Code RecipeMar 56 minInteger to Roman - Short & Simple LeetCode SolutionConvert the given integer to a roman numeral. As we saw in our previous article, roman numerals are represented using seven different
Code RecipeJan 24, 20227 min3 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