photo

Urmish Haribhakti


Last seen: casi 4 años hace Con actividad desde 2020

Followers: 0   Following: 0

Estadística

  • Thankful Level 1

Ver insignias

Feeds

Ver por

Pregunta


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

casi 4 años hace | 4 respuestas | 0

4

respuestas

Pregunta


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 ...

casi 4 años hace | 6 respuestas | 0

6

respuestas