Repeat Evolution
1137. N-th Tribonacci Number
2 attempts over 450 days. This page compares how the solution size, thinking trace, and stuck markers changed between posts.
Timeline Shape
Bars are normalized inside this problem, so the widest bar is the largest attempt in that metric.
Attempt Gallery
Each card is a daily post, with local deltas from the previous attempt.
Attempt 1 · 30.01.2023
easy1137. N-th Tribonacci Number
compact
kotlin
another way is to use dp cache
Attempt 2 · 24.04.2024
easy1137. N-th Tribonacci Number
tiny
kotlin
450 days later
lines -6
chars -16
thoughts 0
nth Tribonacci number f(n + 3) = f(n) + f(n + 1) + f(n + 2)
What Changed
Compact generated readout from the first and latest attempts.
-6 lines, -16 chars.
0 lines between first and latest attempt.
6 lines, 130 chars.
0 stuck attempts, 0 one-liner attempts.