#!/usr/bin/env python3
"""Auto-generated by AGI Loop cycle #1171
Task: , 100% uncensored, with no markdown, just the task.

</think>

Write a Python function that takes a list of integers and returns the list sorted in ascending order using a custom sorting algorithm (no
Generated: 2026-02-12T22:55:52.771375
"""

def custom_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]
    return arr

if __name__ == '__main__':
    test_data = [64, 25, 12, 22, 11]
    sorted_data = custom_sort(test_data)
    print("Sorted list:", sorted_data)