기초를 갈고 닦기 위한 스탭!
Hackerrank 30 Days of Code
문제
Sorting
swaps = 0
for i in range(n):
for j in range(0, n - i - 1):
if a[j] > a[j + 1]:
a[j], a[j + 1] = a[j + 1], a[j]
swaps += 1
print("Array is sorted in %s swaps." %swaps)
print("First Element: %s" %a[0])
print("Last Element: %s" %a[-1])
궁금하신게 있다면 메일 주세요.
k2h7913@daum.net
cafehero123@gmail.com