xxxxxxxxxx
18
let values = [],
i = 0,
j = 0,
w = 10;
function setup() {
createCanvas(windowWidth, windowHeight);
values = new Array(floor(width / w));
randomNumbers();
// bubbleSort();
frameRate(6.5);
}
function draw() {
background(0);
show();
live_Bubble_Sort();
}