Community Profile

photo

Urmish Haribhakti


Last seen: 3年以上 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


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

3年以上 前 | 4 件の回答 | 0

4

回答

質問


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

3年以上 前 | 6 件の回答 | 0

6

回答