X

Cursor AI

Cursor AI is one of the leading AI-powered code editor designed for programmers.

Ratings

Compare with Similar AI Apps

Prompts

1

write a python coding function of calculating fabonacci series

Reviews

Tags


  • codemonkey 2024-10-31 17:05
    Interesting:5,Helpfulness:5,Succinct:5,Correctness:5
    Prompt: write a python coding function of calculating fabonacci series

    I just downloaded Cursor on Mac and tried some coding task. The first task is to write a fabonacci function in python. And once I typed the name "fabonacci(n)" and end the function name with the colon ":", there is a code hint tab poping-up suggesting the remaining code. The suggested codes are correct and are very succinct. Very Helpful AI coding tools. ``` def fabonacci(n): if n == 0: return 0 elif n == 1: return 1 else: return fabonacci(n-1) + fabonacci(n-2) ```

Write Your Review

Detailed Ratings

ALL
Correctness
Helpfulness
Interesting
Upload Pictures and Videos