Solve View

Broken shift key

A challenge by lukegustafson avatar lukegustafson

Description

Oh no! I have a coding interview and my keyboard’s shift key is stuck down! The characters I can use are [a-zA-Z~!@#$%^&*(){}|+?"<>:_\r\n ] (I can type lowercase with the caps lock key). It’s hard to write code without an equal sign, but my interviewer will be really impressed when I find a way!

Print the first 20 tribonacci numbers. The tribonacci numbers are defined by T(0) = T(1) = 0, T(2) = 1, and T(i+3) = T(i+2) + T(i+1) + T(i).

Leaderboard

Author Score
#1 EroticShiveringKingBanana avatar EroticShiveringKingBanana 102
#2 hallvabo avatar hallvabo 107
#3 ndren avatar ndren 146
#4 Andriamanitra avatar Andriamanitra 172
#5 CornerMercury avatar CornerMercury 217
JavaScript (Deno) Kotlin JavaScript (NodeJS) Python Rust C (tcc) APL (TinyAPL) Vyxal Vyxal 3
You must be logged in to submit a solution.