Skip to content
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

[문자열 덧셈 연산기] 김채빈 미션 제출합니다. #1900

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Oct 21, 2024

  1. docs: 기능 구현 목록 작성

    구현할 기능의 목록과 동작의 전제를 작성.
    beanbeen0 committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    36cfa29 View commit details
    Browse the repository at this point in the history
  2. feat(Application): 입력 및 출력

    - getInputString 메서드 작성. 입력메시지를 출력하고, 사용자로부터 문자열을 입력받는다.
    - printResult 메서드 작성. 결과 메시지를 출력한다.
    - main 메서드 작성. 입출력을 실행한다.
    beanbeen0 committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    c45e35d View commit details
    Browse the repository at this point in the history
  3. feat(InputVaildator): 입력 문자열의 유효성을 검증

    정규 표현식을 통해 입력 문자열의 유효성을 검증한다.
    유효하다면 각 패턴에 따른 패턴 타입을 반환한다. 유효하지 않다면, 에러를 던진다.
    beanbeen0 committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    94035c1 View commit details
    Browse the repository at this point in the history
  4. feat(Parser): 입력 파싱 및 Integer 변환

    입력 문자열에서 구분자와 표현식을 얻어낸다. 얻어낸 구분자로 표현식을 나누고, Integer 리스트로 변환한다.
    beanbeen0 committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    2a4e276 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2c7fbf6 View commit details
    Browse the repository at this point in the history