Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
Options[OptionalSort]={ordering->lexicographic,column->1,reverse-> False};
|
||||
OptionalSort[x_List,OptionsPattern[]]:=If[OptionValue[reverse]==True,
|
||||
SortBy[x ,#[[OptionValue[column]]]&]//Reverse,
|
||||
SortBy[x,#[[OptionValue[column]]]&] ]
|
||||
|
||||
OptionalSort[{{"a" ,"b", "c"}, {"", "q", "z"},{"zap" ,"zip", "Zot"}} ]
|
||||
->{{,q,z},{a,b,c},{zap,zip,Zot}}
|
||||
|
||||
OptionalSort[{{"a" ,"b", "c"}, {"", "q", "z"},{"zap" ,"zip", "Zot"}},{ordering->lexicographic,column->2,reverse-> True} ]
|
||||
->{{zap,zip,Zot},{,q,z},{a,b,c}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue