最新 最热

HDOJ 1093 A+B for Input-Output Practice (V)

Problem Description Your task is to calculate the sum of some integers.

2021-01-19
0

HDOJ 1090 A+B for Input-Output Practice (II)

Problem Description Your task is to Calculate a + b.

2021-01-19
0

HDOJ 1001Sum Problem

Problem Description Hey, welcome to HDOJ(Hangzhou Dianzi University Online Judge).

2021-01-19
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
1

HDOJ1002题A + B Problem II,2个大数相加

Problem Description I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.

2021-01-19
1

​LeetCode刷题实战118:杨辉三角

https://leetcode-cn.com/problems/pascals-triangle/

2021-01-19
1

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
1

​LeetCode刷题实战137:只出现一次的数字 II

https://leetcode-cn.com/problems/single-number-ii/

2021-01-19
1

​LeetCode刷题实战150:逆波兰表达式求值

https://leetcode-cn.com/problems/evaluate-reverse-polish-notation/

2021-01-19
1

【剑指Offer】15. 二进制中 1 的个数

题目描述输入一个整数,输出该数二进制表示中 1 的个数。n&(n-1)该位运算去除 n 的位级表示中最低的那一位。n : 10110100n-1 : 10110011n&(n-1) : 10110000时间复杂度:O(M),其中 M 表示 1 的个数。public clas...

2020-12-07
0