diff --git a/YWCHOI/1to10/1.py b/YWCHOI/1to10/1.py index 68b7eaf..881e653 100644 --- a/YWCHOI/1to10/1.py +++ b/YWCHOI/1to10/1.py @@ -6,7 +6,6 @@ def solution2(ary): slist = list(sorted(ary)) return slist -# TEST 코드 입니다. 주석을 풀고 실행시켜보세요 print(solution1([1,-5,2,4,3])) # 반환값 : [-5, 1, 2, 3, 4] print(solution1([2,1,1,3,2,5,4])) # 반환값 : [1, 1, 2, 2, 3, 4, 5] print(solution1([1,6,7])) # 반환값 : [1, 6, 7]