Gulshan Kumarperfinsights.hashnode.dev·May 11, 2024Valid WordA word is considered valid if: It contains a minimum of 3 characters. It contains only digits (0-9), and English letters (uppercase and lowercase). It includes at least one vowel. It includes at least one consonant. You are given a string word....DiscussJava SolutionValid Parenthese
Gulshan Kumarperfinsights.hashnode.dev·May 11, 2024Remove Outermost ParenthesesA valid parentheses string is either empty "", "(" + A + ")", or A + B, where A and B are valid parentheses strings, and + represents string concatenation. For example, "", "()", "(())()", and "(()(()))" are all valid parentheses strings. A valid p...DiscussJava SolutionJava
Gulshan Kumarperfinsights.hashnode.dev·Apr 21, 2024Valid Parenthesis StringGiven a string s containing only three types of characters: '(', ')' and '*', return true if s is valid. The following rules define a valid string: Any left parenthesis '(' must have a corresponding right parenthesis ')'. Any right parenthesis ')' ...DiscussJava SolutionJava
Eyuel Dan⭐⭐⭐blog.eyucoder.com·Mar 16, 2023Valid Parentheses - LeetCode ProblemProblem Description Welcome to another fun coding challenge! Today, we'll be tackling the Valid Parentheses problem. Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input strin...Discuss·92 readsstack
Chau Dinh (Chris)chrisdinh.hashnode.dev·Jan 26, 2023[Vietnamese] A valid parenthesis string (JavaScript implement)Chào mọi người, trong bài viết đầu tiên sau Tết 2023, mình muốn bắt đầu bằng một cái gì nó nhẹ nhàng nên quyết định chọn một bài toán tin đã làm khó mình trong khoảng thời gian lúc trước khi đi phỏng vấn để mổ xẻ về thuật toán và cách mình suy nghĩ. ...Discuss·43 readsalgorithms