You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd love to have a deterministic sorting algorithm that alphabetizes while also keeping acronyms grouped with terms.
For example:
ATO: ...Authority to operate: ... # term belonging to ATOAuthority: ... # no acronym, AU comes after AT (but normal sorting would have this and the above switched)POP: ...Period of performance: ... # terms belonging to POP, alpha-sortedProcurement Operating Procedure: ...
Step 1: Just sort the keys (sort while downcased to avoid capitalization comparison weirdness)
Step 2: Use the more advanced algo
The text was updated successfully, but these errors were encountered:
I'd love to have a deterministic sorting algorithm that alphabetizes while also keeping acronyms grouped with terms.
For example:
The text was updated successfully, but these errors were encountered: