Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
SandeepU
/
code-explainer
like
0
Configuration error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
code-explainer
/
example
/
sample_code.py
SandeepU
Upload sample_code.py
ef9c35a
verified
about 1 year ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
93 Bytes
def
fibonacci
(
n
):
if
n <=
1
:
return
n
return
fibonacci(n-
1
) + fibonacci(n-
2
)