最新 最热

LeetCode 0023 - Merge k Sorted Lists

Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.

2021-08-11
1

LeetCode 0017 - Letter Combinations of a Phone Number

Given a digit string, return all possible letter combinations that the number could represent.

2021-08-11
1

LeetCode 0001 - Two Sum

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

2021-08-11
1

随机过程(1)——引入,有限状态马尔科夫链,状态转移,常返与瞬时状态

大家好!这是一个全新的系列,我们会给大家介绍随机过程(Stochastic Process)相关的内容。

2021-08-10
2

Python编程 封装函数 根据输入参数计算结果返回

define function,calculate the input parameters and return the result.

2021-08-10
1

OpenCV基础 | 7.滤波

均值滤波是低通滤波,线性滤波器,其输出为邻域模板内像素的平均值,用于图像的模糊和降噪。

2021-08-09
1

第二届CUDA On Arm夏令营考题详解:挂了一半的考题究竟长啥样?

要求,输入一个1000x1000的方阵:判定如果x,y坐标都为偶数的元素,则对该元素做平方,否则该元素值减一。

2021-08-03
1

Python 注解+参数+返回值小结

这篇文章偏记录类型,不是写的很细。我先说一下什么是注解,就是参数类型的显化操作,而且会给Python赋予一些静态语言的特性。

2021-07-23
1

LeetCode 553. Optimal Division

Given a list of positive integers, the adjacent integers will perform the float division. For example, [2,3,4] -> 2 / 3 / 4.

2021-07-23
1

LeetCode 94. Binary Tree Inorder Traversal

Given a binary tree, return the inorder traversal of its nodes' values.

2021-07-23
1