Algorithm_Study icon indicating copy to clipboard operation
Algorithm_Study copied to clipboard

FIx list comprehension square value of Pythonic_Code_For_Coding_Test.md

Open dlams opened this issue 2 years ago • 0 comments
trafficstars

지능형 리스트 예제 부분에 결과가 다르게 표현된 것을 수정하였습니다

# [[1, 4, 9], [1, 4, 9], [1, 4, 9]]

to

# [[0, 1, 4], [0, 1, 4], [0, 1, 4]]

dlams avatar Dec 15 '22 01:12 dlams