약속 by 김정환
Windows10 Local에 maven설치하기 by 김경록 about Maven,Windows
- PC를 포멧해서 개발환경을 설정 하는 중에 아카이빙용으로 문서를 만들어 놓습니다
- 3 앞에서 압축 풀었던 디렉토리에 /bin을 추가하여 C:\tools\apache-maven-3
- cmd에서 mvn -v를 했을 때 아래 화면이 나오면 잘 설치 된 것입니다
[leetCode] 1678. Goal Parser Interpretation (Python) by 장동현 about Python
- You own a Goal Parser that can interpret a string command
- The Goal Parser will interpret "G" as the string "G"
- Input: command = "G()(al)" Output: "Goal" Explanation: The Goal Parser interprets the command as follows: G -> G () -> o (al) -> al The final concatenated result is "Goal"