Feeds
已回答
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; ...
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; ...
5 years 前 | 2