Cairo, Egypt
Timezone: Africa/Cairo
Location created: ✅
Events created: ✅
Lagos, Nigeria
Timezone: Africa/Lagos
Location created: ✅
Cairo, Egypt
Timezone: Africa/Cairo
Location created: ✅
Events created: ✅
Lagos, Nigeria
Timezone: Africa/Lagos
Location created: ✅
import fs from "fs"; | |
const input = fs.readFileSync('./input.txt').toString() | |
const elves = input.split(/\n\s*\n/); | |
const calories = elves | |
// Split each elf's list of foods (new lines) and sum into the total calories for all their foods. | |
.map( | |
(elf) => | |
elf |