如果一个数是质数并且该数的反转也是质数,则称该数为扭曲质数。
Input : 97
Output : Twisted Prime Number
Explanation: 97 is a prime number
and its reverse 79 is also a prime
number.
4.给定一个数组 A[] 和一个数字 x,检查 A[] 中的对,总和为 x。
Eg : Input {1, 2, 4, 3, 5, 6}
SUM : 5
Output : 2 (1, 4) & (2, 3)
5.最大和连续子数组
(Kadane 算法)
6.Diamond 模式:对于给定的输入大小 -> 这里 3
*
***
*****
***
*