Algorithm_Study
Algorithm_Study copied to clipboard
This repository consists of materials for those preparing for coding tests and algorithm interviews.
Results
2
Algorithm_Study issues
Sort by
recently updated
recently updated
newest added
trafficstars
본문의 예제 코드 중 오타를 수정합니다. * `list_of_tupel`을 `list_of_tuple`로 수정
지능형 리스트 예제 부분에 결과가 다르게 표현된 것을 수정하였습니다 ```python # [[1, 4, 9], [1, 4, 9], [1, 4, 9]] ``` to ```python # [[0, 1, 4], [0, 1, 4],...