Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
18
Task/JortSort/Ada/jortsort.ada
Normal file
18
Task/JortSort/Ada/jortsort.ada
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
with Ada.Text_IO, Ada.Containers.Generic_Array_Sort;
|
||||
|
||||
procedure Jortsort is
|
||||
|
||||
function Jort_Sort(List: String) return Boolean is
|
||||
procedure Sort is new Ada.Containers.Generic_Array_Sort
|
||||
(Positive, Character, Array_Type => String);
|
||||
Second_List: String := List;
|
||||
begin
|
||||
Sort(Second_List);
|
||||
return Second_List = List;
|
||||
end Jort_Sort;
|
||||
|
||||
use Ada.Text_IO;
|
||||
begin
|
||||
Put_Line("""abbigail"" sorted: " & Boolean'Image(Jort_Sort("abbigail")));
|
||||
Put_Line("""abbey"" sorted: " & Boolean'Image(Jort_Sort("abbey")));
|
||||
end Jortsort;
|
||||
Loading…
Add table
Add a link
Reference in a new issue