819. Most Common Word
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 난이도 : easy 문제 금지된 단어를 제외한 가장 흔하게 등장하는 단어를 출력하라. 대소문자를 구분하지 않으며, 구두점(마침표, 쉼표 등) 또한 무시한다. 1. 입력으도 들어오는 문자열을 소문자로 치환한다. 2. stringstream 을 활용하여 paragraph 문자열을 ' ' 단위로 분리하며..
Developer/LEETCODE
2021. 9. 4. 11:46