Grind75 - 125. Valid Palindrome 파이썬
·
알고리즘/LeetCode_Grind75
125. Valid PalindromeEasyA phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric characters include letters and numbers.Given a string s, return true if it is a palindrome, or false otherwise. Example 1:Input: s = "A man, a plan, a canal: Panama"Output: trueExplan..
[level 2] 이름에 el이 들어가는 동물 찾기 - 59047 python
·
알고리즘/프로그래머스
[level 2] 이름에 el이 들어가는 동물 찾기 - 59047문제 링크 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 성능 요약메모리: 0.0 MB, 시간: 0.00 ms구분코딩테스트 연습 > String, Date채점결과Empty제출 일자2024년 10월 31일 10:27:08문제 설명ANIMAL_INS 테이블은 동물 보호소에 들어온 동물의 정보를 담은 테이블입니다. ANIMAL_INS 테이블 구조는 다음과 같으며, ANIMAL_ID, ANIMAL_TYPE, DATETIME, INTAKE_CONDITION, NAME, SEX_UPON_INTAKE는 각각 동물의 아이디, 생물 종, 보호 시작일, 보..
Grind75 - 20. Valid Parentheses 파이썬
·
알고리즘/LeetCode_Grind75
20. Valid ParenthesesEasyGiven a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.An input string is valid if:Open brackets must be closed by the same type of brackets.Open brackets must be closed in the correct order.Every close bracket has a corresponding open bracket of the same type. Example 1:Input: s = "()"Output: trueExample 2..
Grind75 - 1. Two Sum 파이썬
·
알고리즘/LeetCode_Grind75
1. Two Sum EasyGiven an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.You may assume that each input would have exactly one solution, and you may not use the same element twice.You can return the answer in any order. Example 1:Input: nums = [2,7,11,15], target = 9Output: [0,1]Explanation: Because nums[0] + nums[1] == 9, we return ..
컴공편입생 공부일기
'알고리즘' 카테고리의 글 목록 (3 Page)