error: array literal requires address-of operator (&) to coerce to slice type '[]i64'
const levels = [_][]i64{
[_]i64{ 87, 90, 92, 95, 96, 93 },
[_]i64{ 12, 15, 16, 17, 17 },
[_]i64{ 26, 27, 29, 31, 34, 36, 40 },
};
for (levels) |level| {
...
var ascLevel = level;
std.mem.sort(i64, &ascLevel, {}, comptime std.sort.asc(i64));