AMCAT Automata Fix Sample Question-5

Program 5

Palindrome

Write logical part for checking palindrome of string in given code.

Input: S = “abba”

Output: 1

int isPalindrome(string S)
	{
	    int left=0;
    	    int right=S.length()-1;
    while(left<=right){
        if(    ){
            return 0;
        }else{
             left     ;
            right    ;
        }
    }
    if(    ){
        return 1;
	    }
	}