Community Profile

photo

Urmish Haribhakti


Last seen: mehr als 3 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Statistiken

  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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

mehr als 3 Jahre vor | 4 Antworten | 0

4

Antworten

Frage


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

mehr als 3 Jahre vor | 6 Antworten | 0

6

Antworten