JSFiddle - React, Tailwind, and code Playground

HTML

<pre>
public static void swap(int[] list, int i, int j) {
    /* This method simply takes an array
            and swaps its values at index i and j */

    int temp = list[i];
    list[i] = list[j];
    list[j] = temp;
}
</pre>