leetcode
-
Anagram grouping카테고리 없음 2021. 3. 4. 19:00
Anagram Anagram은 일반적으로 모든 원본 문자를 정확히 한 번 사용하여 다른 단어 나 구의 문자를 재배열하여 형성 된 단어 또는 문구이다. Example 1: Input: strs = ["eat","tea","tan","ate","nat","bat"] Output: [["bat"],["nat","tan"],["ate","eat","tea"]] Example 2: Input: strs = [""] Output: [[""]] Example 3: Input: strs = ["a"] Output: [["a"]] Constraints: 1
-
가장 흔한 단어 찾기카테고리 없음 2021. 3. 3. 18:06
가장 흔한 단어 찾기 금지된 단어를 제외한 가장 흔하게 등장하는 단어를 출력하라. 대소문자는 구별하지 않으며 구두점(, . ...)등은 무시한다. 개인적으로 너무 불친절한 문제가 아닐까 한다. 추가로 주어지는 Input 값과 banned 관련해서 테스트케이스가 계속해서 오류가 남을 뒤늦게 확인 할 수 있었다. Input: paragraph = "Bob hit a ball, the hit BALL flew far after it was hit." banned = ["hit"] Output: "ball" Explanation: "hit" occurs 3 times, but it is a banned word. "ball" occurs twice (and no other word does), so it is ..