I am doing a palindrome check program for school, but there is a twist.
Now I already know that I could use a reverse function or something like:
[-1::-1]
However, the program specifically calls for no string slicing or use of the .reverse() function. So, my question is how would I go about doing this if I cannot use these two simple methods?