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,20 @@
Macro isSort(liste)
If OpenConsole()
Print("[ ") : ForEach liste : Print(liste+Space(1)) : Next : Print("] = ")
If jortSort(liste) : PrintN("True") : Else : PrintN("False") : EndIf
EndIf
EndMacro
Procedure.b jortSort(List jortS.s())
NewList cpy.s() : CopyList(jortS(),cpy()) : SortList(cpy(),#PB_Sort_Ascending)
ForEach jortS()
SelectElement(cpy(),ListIndex(jortS()))
If Not jortS()=cpy() : ProcedureReturn #False : EndIf
Next
ProcedureReturn #True
EndProcedure
NewList l1.s()
For i=1 To 10 : AddElement(l1()) : l1()=Chr(Random(90,65)) : Next
isSort(l1()) : SortList(l1(),#PB_Sort_Ascending) : isSort(l1())
Input()