Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🧮 문자열 덧셈 계산기
📋 기능 목록
빈 문자열을 입력했을 때 0을 반환한다.
""
0
쉼표(,) 또는 콜론(:)을 구분자로 가지는 문자열을 입력하면 구분자를 기준으로 분리한 숫자의 합을 반환한다.
"1,2"
3
"1,2:3"
6
커스텀 구분자가 지정된 경우 해당 구분자를 사용하여 숫자의 합을 계산한다.
"//;\n1;2;3"
6
[ERROR]
로 시작하는 메시지를 출력하고 예외를 발생시킨다."-1,2,3"
[ERROR] 음수는 입력할 수 없습니다.
[ERROR]
메시지를 출력한다."1,A,3"
[ERROR] 숫자 형식이 잘못되었습니다.
🚀 사용 방법
npm install
을 통해 필요한 패키지를 설치한다.npm run start
를 통해 프로그램을 실행한다.🛠️ 테스트 방법
npm run test
를 통해 테스트를 실행한다.