最新 最热

17. 电话号码的字母组合

示例 1: 输入:digits = "23" 输出:["ad","ae","af","bd","be","bf","cd","ce","cf"] 示例 2: 输入:digits = "" 输出:[] 示例 3: 输入:digits = "2" 输出:["a&q...

2021-06-22
0

round函数如何使用 四舍五入函数的介绍及用法

excel是微软的office软件中十分常用的一款,在过去的几十年里,excel开发出了各种各样的函数来辅助表格填写和运算,这些函数在实际工作中给人们带来了极大便利。其中round函数十分有用,以下便是关于该函数的介绍及用法。...

2021-06-17
0

LeetCode 357. Count Numbers with Unique Digits

题目毫无意义的题目。class Solution {public: int countNumbersWithUniqueDigits(int n) { if(n==0) return 1; int ans=0; for(in...

2021-05-10
0

HDOJ/HDU 1250 Hat's Fibonacci(大数~斐波拉契)

Problem Description A Fibonacci sequence is calculated by adding the previous two members the sequence, with the first two members being both 1. F(1) = 1, F...

2021-01-21
0

HDOJ 1197 Specialized Four-Digit Numbers

Problem Description Find and list all four-digit numbers in decimal notation that have the property that the sum of its four digits equals the sum of its digi...

2021-01-21
0

HDOJ 1163 Eddy's digital Roots(九余数定理的应用)

Problem Description The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that d...

2021-01-21
0

HDOJ 1013 Digital Roots

Problem Description The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that d...

2021-01-20
0

HDOJ1018Big Number

Problem Description In many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data, ...

2021-01-19
0

HDOJ 1013题Digital Roots 大数,9余数定理

The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital ...

2021-01-19
0

《论可计算数及其在判定上的应用》简单理解

刚刚拜读了一本书, 《图灵的秘密》. 该书介绍了图灵的论文《论可计算数及其在判定上的应用》, 其指出: 一个拥有铅笔, 纸和一串明确指令的人类计算者, 可以被看做是一种图灵机. 那么图灵机是什么呢?...

2020-12-18
0