반응형
https://school.programmers.co.kr/learn/courses/30/lessons/181907
sub string을 구하는 문제였습니다.
📕 풀이방법
📔 정답 출력 | 반환
0부터 n-1까지의 부분 문자열을 반환합니다.
📕 Code
📔 Python3
def solution(my_string, n):
return my_string[:n]
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > String' 카테고리의 다른 글
(Python3) - 프로그래머스(코딩 기초 트레이닝) : 문자열 반복해서 출력하기 (0) | 2024.10.04 |
---|---|
(Python3) - 프로그래머스(코딩 기초 트레이닝) : a와 b 출력하기 (0) | 2024.10.04 |
(Python3) - LeetCode (easy) 1961. Check If String Is a Prefix of Array (1) | 2024.10.02 |
(C++) - LeetCode (easy) 1869. Longer Contiguous Segments of Ones than Zeros (0) | 2024.09.02 |
(C++) - LeetCode (easy) 1768. Merge Strings Alternately (0) | 2024.07.24 |