[leetcode] 967. Numbers With Same Consecutive Differences

Description

Return all non-negative integers of length n such that the absolute difference between every two consecutive digits is k.

Note that every number in the answer must not have leading zeros. For example, 01 has one leading zero and is invalid.

You may return the answer in any order.

Example 1:

Input: n = 3, k = 7
Output: [181,292,707,818,929]
Explanation: Note that 070 is not a valid number, because it has leading zeroes.

Example 2:

Input: n = 2, k = 1
Output: [10,12,21,23,32,34,43,45,54,56,65,67,76,78,87,89,98]

Example 3:

Input: n = 2, k = 0
Output: [11,22,33,44,55,66,77,88,99]

Example 4:

Input: n = 2, k = 1
Output: [10,12,21,23,32,34,43,45,54,56,65,67,76,78,87,89,98]

Example 5:

Input: n = 2, k = 2
Output: [13,20,24,31,35,42,46,53,57,64,68,75,79,86,97]

Constraints:

  • 2 <= n <= 9
  • 0 <= k <= 9

分析

题目的意思是:给定n和k,求出长度为n的数,数中各个位置的数的绝对值之差为k。这道题需要用dfs方法:

  • 终止条件是搜索的长度达到了n,然后把num加入到结果就行了;
  • 否则构造当前数的下一位数next_digits,然后遍历递归,就行了。

代码

class Solution:
    def dfs(self,n,num,k):
        if(n==0):
            self.res.append(num)
            return 
        tail=num%10
        next_digits=set([tail+k,tail-k])
        for item in next_digits:
            if(item>=0 and item<10):
                new_num=num*10+item
                self.dfs(n-1,new_num,k)
        
    def numsSameConsecDiff(self, n: int, k: int) -> List[int]:
        self.res=[]
        for num in range(1,10):
            self.dfs(n-1,num,k)
        return self.res

参考文献

solution

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值