Skip to content

Instantly share code, notes, and snippets.

View raptox's full-sized avatar

RaptoX raptox

  • Austria
View GitHub Profile
@raptox
raptox / day2.md
Created December 2, 2022 16:36
Advent of Code 2022

Javascript, NodeJS

Part 1
var fs = require('fs');
var filename = 'puzzle2.txt';
fs.readFile(filename, 'utf8', (err, data) => {
    if (err) throw err;