diff options
Diffstat (limited to 'progs/a308.py')
-rw-r--r-- | progs/a308.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/a308.py b/progs/a308.py new file mode 100644 index 0000000..dfb3630 --- /dev/null +++ b/progs/a308.py @@ -0,0 +1,4 @@ +def previous_palindrome(num):
+ for x in range(num-1,0,-1):
+ if str(x) == str(x)[::-1]:
+ return x
\ No newline at end of file |