Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
pigmal24 committed May 8, 2024
1 parent 50b67ee commit 29426e1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tempCodeRunnerFile.python
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
def solution(ary) :
ary.sort()
return ary

# TEST 코드 입니다. 주석을 풀고 실행시켜보세요
print(solution([1,-5,2,4,3])) # 반환값 : [-5, 1, 2, 3, 4]
# print(solution([2,1,1,3,2,5,4])) # 반환값 : [1, 1, 2, 2, 3, 4, 5]
# print(solution([1,6,7])) # 반환값 : [1, 6, 7]

0 comments on commit 29426e1

Please sign in to comment.