Skip to content

Instantly share code, notes, and snippets.

@robinpokorny
Last active March 13, 2025 14:55
Show Gist options
  • Save robinpokorny/f2df2eeb1d3415f2521bd480261c9aaa to your computer and use it in GitHub Desktop.
Save robinpokorny/f2df2eeb1d3415f2521bd480261c9aaa to your computer and use it in GitHub Desktop.

Internationalization Puzzles 2025

Puzzle 1

const textEncoder = new TextEncoder();

input.split('\n').map(line => [textEncoder.encode(line).length <= 160, line.length <= 140]).map(([s, t]) => s ? (t ? 13 : 11) : (t ? 7 : 0)).reduce((a, b) => a + b, 0)

Puzzle 2

Object.entries(Object.groupBy(input.split('\n'), date => new Date(Date.parse(date)).toISOString())).find(([_, arr]) => arr.length >= 4)[0].replace('.000Z', '+00:00')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment