用通俗易懂的语言谈谈机器学习中的支持向量机。
神经网络和反向传播算法 Artificial Neural Network & BP
用通俗易懂的语言谈谈机器学习中的神经网络和 BP 算法。
2019 年终回顾
哪怕是年终总结,也要拖到第二年再写。
逻辑回归 Logistic Regression
用通俗易懂的语言谈谈统计机器学习中的逻辑斯谛回归。
LeetCode Weekly Contest 132
Problem list:
- Divisor Game
- Maximum Difference Between Node and Ancestor
- Longest Arithmetic Sequence
- Recover a Tree From Preorder Traversal
C 语言的变量声明解析规则:顺时针规则(Clockwise/Spiral Rule)
最近在尝试入门 Go 语言,发现 Go 在声明变量类型的时候,采用了将类型置于变量之后的方式:
1 | x int // x: int |
虽然看起来和 C 的结构差不多,但顺序完全不同:读法是从右往左阅读。详见:Go's Declaration Syntax。
那 C 的读法就是从左往右阅读的吗?不是的。它遵循的是「顺时针/螺旋规则(Clockwise/Spiral Rule)」(David Anderson, 1994)。
LeetCode Weekly Contest 131
Problem list:
- Remove Outermost Parentheses
- Sum of Root To Leaf Binary Numbers
- Camelcase Matching
- Video Stitching
This week, I solved the first 3 questions.
LeetCode Weekly Contest 130
So… Simply put, I've been playing with the Competitive Programming these days. This article is mainly some nonsense about my recent life in intership interviews and a simple review of the Weekly Contest 130 on LeetCode as a (good?) start of a regular (might not) review article in following weeks.
使用 Taro 开发微信小程序的实践 + 踩坑合集
我
这篇文章我想简单总结一下我在使用 Taro 开发小程序时的一些经验和踩坑,以及我在与微信小程序纠缠时的各方面心路历程……(主要是微信小程序,我还暂时没有开发多端。)
另外除了 Taro 本身,也会带一些小程序的开发实践。总之乱七八糟说啦,希望能对各位有所帮助。