필터 지우기
필터 지우기

How can I create a function for palindrome ? Anyone can help me with.

조회 수: 1 (최근 30일)
Abdulrehman Khan
Abdulrehman Khan 2016년 11월 28일
댓글: Abdulrehman Khan 2016년 11월 28일
Write a testPalindromes() function that accepts a string then returns true if the string reads the same backwards as forwards and false otherwise. (Do NOT use loops) Thanks In Advance
  댓글 수: 1
Jan
Jan 2016년 11월 28일
As in the other discussions about palindromes in this forum (note: searching the internet will reveal solutions already...), the handling of spaces and upper/lower-case must be defined.

댓글을 달려면 로그인하십시오.

채택된 답변

KSSV
KSSV 2016년 11월 28일
str = 'civic' ;
% str = 'cool' ;
if strcmpi(str,fliplr(str))
fprintf('yes %s is a palindrome \n',str)
else
fprintf('no %s is not a palindrome \n',str)
end
  댓글 수: 3
KSSV
KSSV 2016년 11월 28일
@Jan Simon, mostly I don't answer HW questions. I found this to be simple, I don't think this to be a HW problem.
Abdulrehman Khan
Abdulrehman Khan 2016년 11월 28일
Thanks @KSSV It was useful And @Jan Simon this question is not part of my HW it is a task of group studying.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by