-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[문자열 덧셈 계산기] 민경태 미션 제출합니다. #1914
Open
GO-TE
wants to merge
33
commits into
woowacourse-precourse:main
Choose a base branch
from
GO-TE:GO-TE
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
e81bf33
docs: 기능 구현 목록 작성
GO-TE 2047172
feat(Input): 유저 입력 받는 기능 구현
GO-TE d6b8224
feat(Validator): 커스텀 구분자의 포함 확인 기능 구현
GO-TE 54a553d
feat(Validator): 시작값이 숫자인지 판별 기능 구현
GO-TE e482abc
feat(SeparatorManager): 구분자가 이미 선언 되었는지 확인 기능 구현
GO-TE bbe1a9b
feat(SeparatorManager): 구분자 추가 기능 구현
GO-TE 34ab00f
feat(SeparatorManager): 수정 불가한 구분자 리스트 전달 기능 구현
GO-TE 5d7cf65
chore: SeparatorManager 오타 수정
GO-TE 05084c0
feat(StringHandler): 커스텀 구분자 분리해서 넘겨주는 기능 구현
GO-TE 85820c0
feat(StringHandler): 입력 값에서 구분자만 제거하는 기능 구현
GO-TE 3db0f08
feat(Adder): 전달 받은 값을 더하는 기능 구현
GO-TE 685a57a
feat(Adder): 결과값 전달 기능 구현
GO-TE 987c91c
feat(Validator): 커스텀 구분자에 대한 예외처리 구현
GO-TE c932d2c
docs: 검사기의 범위 초과 예외처리 기능 뎃셈기로 이동
GO-TE 0f01bc4
feat(Validator): 포멧에 맞지 않는 입력일 시 예외 처리 기능 구현
GO-TE eb937f1
feat(Adder): 오버 플로우 발생 시 예외 처리 기능 구현
GO-TE d6a3161
feat(Output): 시작 메세지 출력 기능 구현
GO-TE 5efe9f2
feat(Output): 결과값 출력 기능 구현
GO-TE bebc033
fix(StringHandler): getNumbers() 모든 수가 1의 자리로 되는 버그 수정
GO-TE f192a39
fix(StringHandler): 커스텀 구분자 선언문 추출, 제거 기능 수정
GO-TE 93dc649
docs: 문자열 핸들러 기능 구현 목록 수정
GO-TE dde4daa
fix(Validator): 커스텀 구분자 유무, 입력값 검증 기능 수정
GO-TE 1026689
feat(Controller): 시스템 로직 기능 구현
GO-TE 9253888
feat(Application): 어플리케이션 기능 구현
GO-TE 1d200a7
fix(test): 개행 문자로 인식하지 않도록 수정 (\n -> \n)
GO-TE a801593
refactor: 유틸성 띄는 클래스 util package로 이동
GO-TE 050b645
chore(Controller): util 패키지 이동으로 인한 import 수정
GO-TE f9c80d1
fix(util): Validator 공백 입력시 에러 수정
GO-TE c90a512
feat(Adder): 숫자만 입력 되었는지 확인하는 기능 구현
GO-TE 9aad1c3
style: import 와일드 카드 제거
GO-TE c3dbbc0
refactor(SeparatorManage): 커스텀 구분자 추가 이전 이미 존재하는지 검증
GO-TE bdc59bb
refactor: 하드 코딩 제거
GO-TE 4115bc9
docs: 구현 완료 체크
GO-TE File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. InputView가 저도 이러한 방식으로 구현했는데요~ 근데 피드백으로 사용자에게 입력을 받을때 출력하는 문구는 InputView의 책임이 아닌가 하는 의견을 들었습니다~ 이 부분에 대해서 저는 아직도 해답을 찾지 못했는데, 경태님의 생각은 어떠신지 궁금해요! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package calculator; | ||
|
||
import camp.nextstep.edu.missionutils.Console; | ||
|
||
public class Input { | ||
public String readInput() { | ||
return Console.readLine(); | ||
} | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
문서도 꼼꼼하게 적어주셨고,
기능마다 체크 표시도 해주셨네요 👍
살아있는 문서화 좋습니다!