refactored the prb page and added fib seqq

This commit is contained in:
2025-08-12 16:37:35 +02:00
parent a03f9ddb14
commit 0bffdf612c
4 changed files with 357 additions and 29 deletions

View File

@@ -0,0 +1,6 @@
{
"title": "Fibonacci Sequence",
"description": "Calculate the n-th Fibonacci number using a function. The Fibonacci sequence is defined as follows: F(0) = 0, F(1) = 1, and F(n) = F(n-1) + F(n-2) for n > 1.",
"description_md": "problems/fibonacisequence/description.md",
"test_code": "problems/fibonacisequence/test.py"
}