Last updated: 2026-09-13
Beepnik is a game that teaches how Claude Code works through gameplay. This policy describes, plainly and completely, what Beepnik does and does not do with your information.
| function flatten(array) { | |
| var idx, | |
| temp = [array], | |
| lastIdx = [-1], | |
| result = []; | |
| while(temp.length) { | |
| array = temp.pop(); | |
| idx = lastIdx.pop() + 1; |
A Pen by Mark Sweet on CodePen.