Post

문자열 겹쳐쓰기

https://school.programmers.co.kr/learn/courses/30/lessons/181943

📔 문제 설명

문자열 my_string, overwrite_string과 정수 s가 주어집니다.
문자열 my_string의 인덱스 s부터 overwrite_string의 길이만큼을 문자열 overwrite_string으로 바꾼 문자열을 return 하는 solution 함수를 작성해 주세요.

💡 입출력 예

my_stringoverwrite_stringsresult
“He11oWor1d”“lloWorl”2“HelloWorld”
“Program29b8UYP”“merS123”7“ProgrammerS123”

💻내가 작성한 코드

  • my_string 중에서 overwrite 하기 전 부분만 자르기
  • my_string 중에서 overwrite 하고 난 후 부분만 자르기
1
2
3
4
5
6
function solution(my_string, overwrite_string, s) {
  const before_string = my_string.slice(0, s);
  const after_string = my_string.slice(s + overwrite_string.length);

  return before_string + overwrite_string + after_string;
}
This post is licensed under CC BY 4.0 by the author.