UNPKG

cutthroat-coding

Version:

Concise implementations of common data structures and algorithms (DS&As) in JS. Clone of work by Lareine Jeng.

8 lines (6 loc) 140 B
var unsorted1 = [ 7, 2, 9, 8, 5, 4, 6, 1, 3]; var sorted1 = [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ]; module.exports = { unsorted1, sorted1 }