45dd73d8f3fcee8be660315e4fb95dbc9ad15328
A list can be sorted after shuffling. The trivial cases are the empty list and a list with only one element or lists with only identical elements. Lists with only a few elements have a non-negligible chance to be sorted after shuffling.
Java collections for primitives (currently only int) released under MIT license.
IntList is an implementation of a list to store primitive integers. You can add, insert, replace and remove elements in the list. The ints are stored in an int array and the class takes care of growing the array as needed. You can trim the list to reduce the memory overhead.
Languages
Java
99.9%
Shell
0.1%