from flask import Flask, render_template_string, request, jsonify
import csv, io, time

app = Flask(__name__)

# ================= SORTING LOGIC =====================

def bubble_sort(a):
arr = a[:]; ops = []; comps = swaps = 0
n = len(arr)
for i in range(n-1):
for j in range(n-i-1):
...