Evaluate how much the answer you chose satisfies the 6 quality metrics:
Explanation Quality
Style and Formatting
Functionality and Performance
Relevance and Completenes
Trust and Safety
Security
For each quality, rate it 1 to 5 using the slider

>>> def bubble_sort(arr):
... n= len(arr)
... for i in range(n):
... for j in range(0, n-i-1):
... if arr[j] > arr[j+1]:
... arr[j], arr[j+1] = arr[j+1], arr[j]
...
>>> arr[j], arr[j+1] = arr[j+1], arr[j]

>>> arr= [64, 35, 26]
>>> bubble_sort(arr)
>>> print("soerted array;", arr)

soerted array; [26, 35, 64]

Q&A Education