반응형
📕 풀이방법
📔 입력 및 초기화
1. sentence를 선언 후 공백으로 문장을 나눠 split해줍니다.
📔 풀이과정
1. sentence의 원소를 순회하며 searchWord가 접두어인 경우 해당 index + 1을 반환합니다.
📔 정답 출력 | 반환
-1을 반환합니다.
📕 Code
📔 Python3
class Solution:
def isPrefixOfWord(self, sentence: str, searchWord: str) -> int:
sentence = sentence.split(' ')
for index, s in enumerate(sentence):
if s.startswith(searchWord):
return index+1
return -1
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > Brute Force' 카테고리의 다른 글
(Python3) - LeetCode (Easy) : 3264. Final Array State After K Multiplication Operations I (0) | 2024.12.16 |
---|---|
(Python3) - LeetCode (Medium) : 2981. Find Longest Special Substring That Occurs Thrice I (0) | 2024.12.10 |
(Java, Python3) - 프로그래머스(연습문제): 크기가 작은 부분문자열 (0) | 2024.11.19 |
(Python3) - 프로그래머스(연습문제): 바탕화면 정리 (0) | 2024.11.10 |
(Python3) - 프로그래머스(PCCE 기출문제): 10번 / 공원 (0) | 2024.11.08 |