今天LeetCode的时候暴力求解233


  • 问题:


给定一个整数 n,计算所有小于等于 n 的非负数中数字1出现的个数。



例如:



给定 n = 13,



返回 6,因为数字1出现在下数中出现:1,10,11,12,13。



  • 代码:

class Solution:
def __init__(self):
self.key = '1'
self.result = 0

def countDigitOne(self, n):
"""
:type n: int
:rtype: int
"""
if n < 1:
return self.result
self.result += str(n).count(self.key)
if n > 0:
self.countDigitOne(n-1)
return self.result

s = Solution()
print(s.countDigitOne(11221))

  • 错误:


maximum recursion depth exceeded while getting the str of an object



  • 寻找python最大递归深度

class Solution:
def __init__(self):
self.key = '1'
self.result = 0

def countDigitOne(self, n):
"""
:type n: int
:rtype: int
"""
if n < 1:
return self.result
self.result += str(n).count(self.key)
if n > 0:
self.countDigitOne(n-1)
return self.result

s = Solution()
for i in range(0,1000000):
print(i)
print(s.countDigitOne(i))

输出 998,然后报错,最大递归深度找到了,还是安心用while吧~


时间会记录下一切。

水文专业在R语言中常用的包 r语言wgcna

WGCNA(加权基因共表达网络分析)R软件包,用于执行加权相关网络分析,包括网络构建、模块检测、基因选择、拓扑结构计算、数据模拟、可视化以及与外部软件的接口等功能。WGCNA旨在寻找协同表达的基因模块,并探索基因网络与关注的表型之间的关联,以及网络中的核心基因。推荐15个样品以上的数据。### 1. 包的安装和加载 ## 安装依赖包 if (!require("BiocManager", quie