Skip to content

Commit

Permalink
test push
Browse files Browse the repository at this point in the history
  • Loading branch information
pigmal24 committed Aug 5, 2024
1 parent 0f0588d commit 86f3763
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion YWCHOI/1to10/1.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 86f3763

Please sign in to comment.