photo

Urmish Haribhakti


Last seen: environ 4 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Question


recursive function to check a Palindrome
function out=palindrome(x) n=numel(x); if n==1 out=true; else Can anyone continue from here?

environ 4 ans il y a | 4 réponses | 0

4

réponses

Question


recursive function to calculate Max number.
function mx=recursive_max(v) if numel(v)==1 mx=v; end if numel(v)>1 mx= recursive_max(1); end this much i've got ...

environ 4 ans il y a | 6 réponses | 0

6

réponses