牛客big号
牛客big号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客big号的博客
全部文章
/ 题解
(共1篇)
题解 | #微信红包#
-- coding:utf-8 -- class GrayCode: def getGray(self, n): # write code here if n==1: tmp=['0','1'] else: tmp=['0'+i for i in self.getGray(n-1)]+['1'+i ...
Python2
2022-05-05
0
432