the-honk/challenges/euler/constants.js

36 lines
569 B
JavaScript

const path = require('path');
module.exports = {
resources: path.join(__dirname, 'resources'),
src: path.join(__dirname, 'src'),
thoughts: path.join(__dirname, 'thoughts'),
root: __dirname,
alphabet: [
'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
'k',
'l',
'm',
'n',
'o',
'p',
'q',
'r',
's',
't',
'u',
'v',
'w',
'x',
'y',
'z'
]
};