Community Profile

photo

sesha sai


Last seen: 3 years ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
How do you write a matlab function that identifies if a string is a palindrome or not?
function [ palindromic ] = palindrome( string ) if length(string) < 1 palindromic = logical(1); return; ...

3 years ago | 2