跳到主要内容

2549.统计桌面上的不同数字

链接:2549.统计桌面上的不同数字
难度:Easy
标签:数组、哈希表、数学、模拟
简介:返回在 109 天之后,出现在桌面上的 不同 整数的数目。

题解 1 - python

  • 编辑时间:2024-03-23
  • 执行用时:40ms
  • 内存消耗:16.48MB
  • 编程语言:python
  • 解法介绍:最后会获取所有的数。
class Solution:
def distinctIntegers(self, n: int) -> int:
return n - 1 if n > 1 else n