![]() |
Python
1.0
|
Checking for mutual palindromes. More...
Functions | |
def | areMutualPalindromes (str1, str2) |
Checks whether two strings are mutual palindromes. More... | |
def | main () |
Checking for mutual palindromes.
Examples:
def _06b_palindromas_mutuas.areMutualPalindromes | ( | str1, | |
str2 | |||
) |
Checks whether two strings are mutual palindromes.
Two words are mutual palindromes when they are the same when one of them is spelt in reverse.
str1 | firts string. |
str2 | second string. |
Referenced by main().
def _06b_palindromas_mutuas.main | ( | ) |
References areMutualPalindromes(), _01d_dec2bin.input, and validateRoman.raw_input.