WeBeginners-Community / DocBook

Documentations of Html to every open source technologies. It's a low-code repository
30 stars 54 forks source link

Title: Ackermann Function #205

Closed Sanya2911 closed 1 year ago

Sanya2911 commented 1 year ago

Is your proposal related to a problem? Please describe.

Ackermann Function is function with two arguments each of which can be assigned any non-negative integer. It uses recursion to compute the value.

It is calculated using this logic : if m=0 then Ackermann(m,n)= n+1, if m>0, n=0 then Ackermann(m,n)= Ackermann(m-1,n) and if m>0, n>0 then Ackermann(m,n)= Ackermann(m-1,Ackermann(m,n-1))

Add any other context or screenshots about the proposal request here.

I would like to use python and C to create this recursive function.

Sanya2911 commented 1 year ago

please assign

Sanya2911 commented 1 year ago

@Sulagna-Dutta-Roy should I add the files in algorithms folder ??