This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Tom MacWright
macwright.com
did:plc:bxmukjuf2e6z6tvpmklbbern
fun challenge! shortest I could golf it is
const findLongestStreak = (v, n) => Math.max(...v.map(x => ++x).join("").split(1).map(v => v.length >= n ? v.length : 0))
2025-03-24T13:03:31.855Z