About Me

Hello, my name is Ayub Alam. I'm a student of B. Tech. ( Computer Science & Engineering ).
This blog is specially for the technical skills. Here you can find the posts specially related to programming, data structure, etc.

No comments:

Post a Comment

Python Program to find Fabonacci

fabtab={} def fabonacci(n):     fabtab[0]=0     fabtab[1]=1     for i in range(2,n+1):         fabtab[i]=fabtab[i-1]+fabtab[i-2]         ...