• Prime Palindrome Golf


    Prime Palindrome Golf

    Do you know how to play Prime Palindrome Golf? You are given a number and your challenge is to find the closest palindromic prime number that greater than what you were given.

    A palindromic number or numeral palindrome is a number that remains the same when its digits are reversed, such as 79197. These numbers appear to be symmetrical. 
    A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. In this task you will be given an positive integer. You should find the closest integer that:
    - is greater than the given number;
    - is prime;
    - is palindromic.
    For example: for the number 13, the closest greater palindromic prime is 101. Or, for the number is 2, the answer is 3, because any one-digit number is a palindrome.

    We have one more rule for this challenge. This is a code golf mission and your main goal is to make your code as short as possible. The shorter your code, the more points you earn. Your score for this mission is dynamic and directly related to the length of your code. For reference, scoring is based on the number of characters used. 250 characters is the maximum allowable and it will earn you zero points. For each character less than 250, you earn 1 point. For example for 200 character long code earns you 50 points.

    Important: We are using default recursion limit (100). So don't try to solve this mission with recursion.

    Input: A number as an integer.

    Output: The closest greater palindromic prime as an integer.

    题目大义: 找出比输入数字大的, 且是回文数及素数的数字; 要求代码尽可能短;

    如: golf(2) = 3, golf(13) == 101, golf(101) = 131

     1 def T(n):
     2     for i in range(2, n):
     3         if n % i == 0:
     4             return False
     5 
     6     return True
     7 
     8 def golf(number):
     9     for i in range(number + 1, 98690):
    10         if i == int(str(i)[::-1]) and T(i):
    11             return i

    第一份代码中规中矩, 回文数的判断使用str的切片[::-1], 至于98690的限制, 由于题目中的number >= 0 and number < 98689, 而98689正好是回文数且又是素数, 因此结果的最大可能为98689

    1 def golf(n):
    2     for x in range(n + 1, 98690):
    3         if str(x)[::-1] == str(x) and [x % i for i in range(2, x)].count(0) == 0:
    4             return x

    第二份代码省去了使用函数判断素数, 使用列表解析判断素数, 在区间[2, x), 如果没有能够整除的数, 即为素数

    1 def golf(n):
    2     for x in range(n + 1, 98690):
    3         if str(x)[::-1] == str(x) and all([x % i != 0 for i in range(2, x)]):
    4             return x

    第三份代码, 使用all判断是否均为不可整除的数

    1 golf = lambda n: next(x for x in range(n + 1, 98690) if str(x)[::-1] == str(x) and all([x % i != 0 for i in range(2, x)]))

    第四份代码, 使用了generator将for循环融合, 调用next获得下一个元素, 即结果; 并使用了lambda表达式

  • 相关阅读:
    学号 20175201张驰 《Java程序设计》第5周学习总结
    2018-2019-20175329 实验五《网络编程与安全》实验报告
    MySort作业与IO-Myhead
    实验四《Android程序设计》实验报告封面
    学号 20175329 《Java程序设计》第10周学习总结
    2018-2019-20175329 实验三敏捷开发与XP实践《Java开发环境的熟悉》实验报告
    MyCP(课下作业,必做)
    # 20175329 2018-2019-3 《Java程序设计》第九周学习总结
    学号 20175329 2018-2019-3《Java程序设计》第八周学习总结
    学号 20175329 2018-2019-3《Java程序设计》第八周学习总结
  • 原文地址:https://www.cnblogs.com/hzhesi/p/3891711.html
Copyright © 2020-2023  润新知