--- Stack (before first sort) --- 002: [7,"hello",11] 001: "c" 000: 2048 --- Stack (after first sort) --- 002: [7,11,"hello"] 001: "c" 000: 2048 --- Stack (before second sort) --- 005: ["world","one"] 004: 1024 003: "a" 002: [7,11,"hello"] 001: "c" 000: 2048 --- Stack (after second sort) --- 005: ["one","world"] 004: 1024 003: "a" 002: [7,11,"hello"] 001: "c" 000: 2048 --- Stack (before third sort) --- 006: ["dream",1] 005: ["one","world"] 004: 1024 003: "a" 002: [7,11,"hello"] 001: "c" 000: 2048 --- Stack (after third sort) --- 006: [1,"dream"] 005: ["one","world"] 004: 1024 003: "a" 002: [7,11,"hello"] 001: "c" 000: 2048 --- Stack (at end) --- 000: [2048,"c",[7,11,"hello"],"a",1024,["one","world"],[1,"dream"],"b","4096",[1,[2,[3]]]]