This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def main(): | |
memo = 0 | |
x = 0 | |
y = 0 | |
for i in range(1, 999): | |
for j in reversed(range(1,999)): | |
temp = i * j | |
s = str(temp) | |
if (s[0] == s[-1] and temp > memo): | |
memo = temp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Guid" : "E9BE065F-0ED9-40A0-ACF6-11D8A620174A", | |
"Tags" : [ | |
], | |
"Ansi 12 Color" : { | |
"Green Component" : 0.5764705882352941, | |
"Red Component" : 0.7411764705882353, | |
"Blue Component" : 0.9764705882352941 | |
}, |
OlderNewer