Daily challenge for 2025-01-25
25. Climbing Stairs
Write a function solve that calculates how many distinct ways you can climb a staircase of n steps, taking 1 or 2 steps at a time.
Example:Input: 3Output: 3(1+1+1, 1+2, 2+1)
Run this challenge interactively in Python or JavaScript when the app loads.