releetcode.hashnode.devRoman to Integer🧠 Problem Roman to Integer Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, 2 is written as II in Roman numeral, just two one's added together. 12 is written as XII, which is simply X + II. The numb...Aug 20, 2025·1 min read
releetcode.hashnode.devInteger to Roman🧠 Problem Integer to Roman Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, 2 is written as II in Roman numeral, just two one's added together. 12 is written as XII, which is simply X + II. The numb...Aug 20, 2025·1 min read
releetcode.hashnode.devContainer With Most Water🧠 Problem Container With Most Water You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, height[i]). Find two lines that together with the x-axis form a co...Aug 20, 2025·2 min read
releetcode.hashnode.devRegular Expression Matching🧠 Problem Regular Expression Matching Given an input string s and a pattern p, implement regular expression matching with support for '.' and '*' where: The matching should cover the entire input string (not partial). 🏷️ Tags string, Dynamic Prog...Aug 20, 2025·1 min read
releetcode.hashnode.devPalindrome Number🧠 Problem Palindrome Number Given an integer x, return true if x is palindrome integer. An integer is a palindrome when it reads the same backward as forward. 🏷️ Tags Math 📊 Difficulty Easy ✅ Success Rate: 52.3%📥 Submissions: 3,823,313📈 Accept...Aug 20, 2025·1 min read