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.
<느낀점>
처음에는 1단계에서 자바의 랜덤함수를 이용하여 자동차를 조건에 맞게 움직이게 하는 구현까지는 쉽다고 느껴졌지만 3단계 우승자를 구하는 단계에서 여러명의 우승자를 구하는 것과 자동차의 이름의 길이를 제한하는 것이 단순하게 구현되지 않는다는 점을 느꼈습니다. 평소 파이썬으로 알고리즘 문제를 조금이나마 접했었는데 파이썬에서는 생각하는 그대로 구현하면 왠만하면 가능했지만 자바에서는 다른 추가적인 기능을 사용하거나 다른 방법으로 접근하여 해결해야 한다는 부분에서 시간이 소요됬던것 같습니다.
<생각할점>
전체적인 미션의 난이도를 생각해 보면 단계별로 주어져 충분히 할만하다고 생각하였지만, indent depth 2이하의 조건을 어떻게 접근해야 해결할 수 있는지 감이 잡히질 않았습니다. 검색해본 결과 mock을 사용하여 해결하는 것을 보았는데, 이것이 맞는 것인지 처음 접해보는것이여서 우선 해당 조건을 배제하고 작성을 하였습니다. mock이 정확히 무엇인지 이것으로 해당 조건을 해결하는 것이 맞는지에 대해 더 고민해봐야 할 것 같습니다.