제출 #501134

#제출 시각아이디문제언어결과실행 시간메모리
501134Doj04Bubble Sort 2 (JOI18_bubblesort2)C++14
컴파일 에러
0 ms0 KiB
def bubbleSort(alist): for passnum in range(len(alist)-1,0,-1): for i in range(passnum): if alist[i]>alist[i+1]: temp = alist[i] alist[i] = alist[i+1] alist[i+1] = temp alist = [54,26,93,17,77,31,44,55,20] bubbleSort(alist) print(alist)

컴파일 시 표준 에러 (stderr) 메시지

bubblesort2.cpp:1:1: error: 'def' does not name a type
    1 | def bubbleSort(alist):
      | ^~~