FinnSort: public access

This commit is contained in:
Daniel Langbein 2024-12-10 21:38:56 +00:00
parent 75f7f34fa3
commit b16ef90b8c
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -7,7 +7,7 @@ public class FinnSort {
private static final ArrayList<Run> runs = new ArrayList<>();
static void sort(Integer[] a) {
public static void sort(Integer[] a) {
int n = a.length;
int i = 0;