1
1
mirror of https://github.com/rsms/inter.git synced 2024-09-11 18:57:59 +03:00
inter/misc/gen-num-pairs.js
2017-08-22 02:23:08 -07:00

11 lines
189 B
JavaScript

const chars = '0 1 2 3 4 5 6 7 8 9 A B C D E F a b c d e f'.split(' ')
for (let c1 of chars) {
let s = []
for (let c2 of chars) {
s.push(c1 + c2)
}
console.log(s.join(' '))
}