본문 바로가기
반응형

Study/Algorithm38

[LeetCode] #5. Longest Palindromic Substring (python) 문제 https://leetcode.com/problems/longest-palindromic-substring/ Longest Palindromic Substring - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 주어진 문자열에서 가장 긴 팰린드롬 문자열을 반환해야 한다. 예시 입출력 Input: s = "babad" Output: "bab" 풀이 책 풀이 class Solution: def longestPalindrome(self, s: str) -> s.. 2022. 2. 21.
[LeetCode] #49. Group Anagrams (python) 문제 https://leetcode.com/problems/group-anagrams/ Group Anagrams - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 애너그램 : 문자를 재배치해서 단어나 문구가 나오게 하는 것 같은 문자로 구성된 단어들끼리 묶어서 반환하면 된다. 예시 입출력 Input: strs = ["eat","tea","tan","ate","nat","bat"] Output: [["bat"],["nat","tan"],["ate","eat",".. 2022. 2. 20.
[LeetCode] #819. Most Common Word (python) 문제 https://leetcode.com/problems/most-common-word/ Most Common Word - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 주어진 문단에서 금지된 단어들을 제외하고 가장 자주 나온 단어를 소문자로 반환하는 문제다. 예시 입출력값 Input: paragraph = "Bob hit a ball, the hit BALL flew far after it was hit.", banned = ["hit"] Output: "b.. 2022. 2. 17.
[LeetCode] #937. Reorder Data in Log Files (python) 문제 https://leetcode.com/problems/reorder-data-in-log-files/ Reorder Data in Log Files - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 주어진 로그는 문자로된 로그와 숫자로 된 로그로 이루어져 있다. 모든 로그의 첫 번째 단어는 식별자고 각 단어들 사이에는 공백이 있다. 문자 로그는 모두 소문자다. 주어진 예시 입력값을 보면 아래와 같다. Input: logs = ["dig1 8 1 5 1",".. 2022. 2. 17.
반응형