closed by
506 views
0 votes
0 votes
closed with the note: no source
A(n)

{if(n<1) return (1);

else return A(n-2)+B(n-1);}

B(n)

{if(n<=1)   return 1;

else  return B(n-1)+A(n-2);}
closed by

Related questions