makc3333 M makc3333 Регистрация 23 Дек 2013 Сообщения 92 Репутация 0 Спасибо 0 Монет 0 10 Сен 2016 #1 def IsPalindrome: temp = str if temp == temp[::-1]: return 1 else: return 0 Result = 0 for i in range(100, 1000): for j in range (100, 1000): if IsPalindrome(i * j) == 1 and (i * j) > Result: Result = (i * j) print(Result)
def IsPalindrome: temp = str if temp == temp[::-1]: return 1 else: return 0 Result = 0 for i in range(100, 1000): for j in range (100, 1000): if IsPalindrome(i * j) == 1 and (i * j) > Result: Result = (i * j) print(Result)
fdfd F fdfd Регистрация 5 Янв 2013 Сообщения 73 Репутация 0 Спасибо 0 Монет 0 10 Сен 2016 #2 своего питона задуши и спать) Позитивный голос 0