Convert your code repository into an anonymous static website for paper review
This tool helps you create an anonymous version of your code repository for paper review
def fibonacci(n):
if n <= 1:
return n
a, b = 0, 1
for _ in range(2, n + 1):
a, b = b, a + b
return b
Learn how to deploy your anonymous site to Cloudflare Pages