摘要:
问题: 给定一组数,将其排列 使得相邻两个数的和,正好是一个可被平方的数。 求所有的排列可能个数。 Example 1: Input: [1,17,8] Output: 2 Explanation: [1,8,17] and [17,8,1] are the valid permutations. 阅读全文
摘要:
问题: 给定一个棋盘, 0:可以走的路径 1:起点(有且只有一个) 2:终点(有且只有一个) -1:障碍物,不可走的路径 求从起点到终点,走遍所有可走路径(仅经过一次),的所有路线的可能数。 Example 1: Input: [[1,0,0,0],[0,0,0,0],[0,0,2,-1]] Out 阅读全文
摘要:
问题: 求位数为n,相邻数字之间绝对值为k的所有数的可能性。 Example 1: Input: n = 3, k = 7 Output: [181,292,707,818,929] Explanation: Note that 070 is not a valid number, because 阅读全文