最新 最热

Leetcode 题目解析之 Combination Sum III

Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique s...

2022-01-08
1

Leetcode 题目解析之 Two Sum

Given an array of integers, find two numbers such that they add up to a specific target number.

2022-01-08
0

ACMSGURU 149 - Computer Network

A school bought the first computer some time ago. During the recent years the school bought N-1 new computers. Each new computer was connected to one of settled...

2021-12-18
1

LeetCode笔记:357. Count Numbers with Unique Digits

这道题的意思是,对于0到10的n次方内的数,计算其中所有数都唯一的数的数量,比如19每一位都是唯一的数字,而11有两个1重复了,是这个意思,所以当给出n为2时,是计算0到99内的唯一组成数的数量,只有11、22...这些重复的数的组成不...

2021-11-23
0

LeetCode笔记:204. Count Primes

我们知道最简单的质数就是2,3,5。。。那怎么计算往后的质数呢?质数的定义是除了自己以外没有任何因子,也就是不被任何数整除,也就是说,不会被这个数前面的任何质数和非质数整除,其实非质数也可以被质数整除,比如4被2整除,所以...

2021-11-23
0

LeetCode笔记:202. Happy Number

一看到这个题目我是懵逼的,看一个数字是不是happy,出题人真有童心。想找规律吧算了几个数字感觉没得规律找啊。从最简单的思路来看就是不断循环看最后得到的是不是1了,但是返回true的判断容易,什么时候就可以下结论说这个...

2021-11-23
1

【Go】Go语言基本数据类型

整型 int // int is a signed integer type that is at least 32 bits in size. It is a distinct type, however, and not an alias for, say, int32. int8: Range: -12...

2021-09-16
1

从易到难,由浅入深 | Power Query里如何构造等差、等比数列?

最近,有朋友在群里问,在PQ里怎么构造等差、等比数列,这个问题本身并不复杂,但是,这个问题在一定程度上体现里PQ的函数从用简单函数解决常用简单问题、相对复杂函数解决相对复杂问题的层次性。...

2021-08-31
0

LeetCode 1. Two Sum(数组中和为某数的两个整数的角标数组)

题目地址:https://leetcode.com/problems/two-sum/description/

2021-08-27
0

Python的range和map函数

函数式编程(Functional programming)是一种编程范式,目前没有统一的定义。对于并发编程有广泛应用。Python中,range,map,filter,zip等属于函数式编程。

2021-08-20
0