Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1 @@
[1, 1.1, [1,2], true, false, null, {"a":1}, null] | sort

View file

@ -0,0 +1 @@
[null,null,false,true,1,1.1,[1,2],{"a":1}]

View file

@ -0,0 +1,13 @@
def quicksort:
if length < 2 then . # it is already sorted
else .[0] as $pivot
| reduce .[] as $x
# state: [less, equal, greater]
( [ [], [], [] ]; # three empty arrays:
if $x < $pivot then .[0] += [$x] # add x to less
elif $x == $pivot then .[1] += [$x] # add x to equal
else .[2] += [$x] # add x to greater
end
)
| (.[0] | quicksort ) + .[1] + (.[2] | quicksort )
end ;