Skip to content

Commit cb4b2f9

Browse files
committed
Add Template
1 parent dd6a040 commit cb4b2f9

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

‎leetcode-solutions/0371-Sum-Of-Two-Integers-两整数之和.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# LeetCode [371. 两整数之和](https://leetcode-cn.com/problems/sum-of-two-integers/)
22

3+
<p align="center">
4+
<a href="https://mp.weixin.qq.com/s/TsTcCDboXwnTnUeIW3Zg9Q"><img src="https://img.shields.io/badge/LeetCode组队刷题群-blueviolet" alt=""></a>
5+
</p>
6+
37
## 题解
48

59
题目要求不能使用 $+、-$​,自然想到使用其他的二元运算符,我们可以根据二进制位,选择位运算符计算得到两数之和。

‎力扣LeetCode题解/0371-Sum-Of-Two-Integers-两整数之和.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# LeetCode [371. 两整数之和](https://leetcode-cn.com/problems/sum-of-two-integers/)
22

3+
<p align="center">
4+
<a href="https://mp.weixin.qq.com/s/TsTcCDboXwnTnUeIW3Zg9Q"><img src="https://img.shields.io/badge/LeetCode组队刷题群-blueviolet" alt=""></a>
5+
</p>
6+
37
## 题解
48

59
题目要求不能使用 $+、-$​,自然想到使用其他的二元运算符,我们可以根据二进制位,选择位运算符计算得到两数之和。

‎题解模板.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# 题目标题
2+
3+
<p align="center">
4+
<a href="https://mp.weixin.qq.com/s/TsTcCDboXwnTnUeIW3Zg9Q"><img src="https://img.shields.io/badge/LeetCode组队刷题群-blueviolet" alt=""></a>
5+
</p>
6+
7+
## 题解
8+
9+
10+
11+
## 代码
12+
13+
14+
15+
16+
17+
## 最后
18+
19+
大家好,我是编程熊,字节跳动、旷视科技前员工,ACM亚洲区域赛金牌,欢迎 [关注我](https://leetcode-cn.com/u/bianchengxiong/) 和加入 [LeetCode组队刷题群](https://mp.weixin.qq.com/s/TsTcCDboXwnTnUeIW3Zg9Q)
20+
21+
22+
23+
**分享几篇算法超级易懂的文章,希望对你有所帮助**
24+
25+
1、[ACM金牌选手讲解LeetCode算法《线性表》](https://mp.weixin.qq.com/s/qwaYOFIksFVqZtA_nisl6g)
26+
27+
2、[ACM金牌选手讲解LeetCode算法《栈和队列的高级应用》](https://mp.weixin.qq.com/s/I3DQOUmABmWav4nrAiI3Fg)
28+
29+
3、[ACM金牌选手讲解LeetCode算法《哈希表》](https://mp.weixin.qq.com/s/af4gvYURUoCTfsyzsI9Www)
30+
31+
4、[ACM金牌选手讲解LeetCode算法《二叉树》](https://mp.weixin.qq.com/s/8AcRNQS0Nno2_fU6kMtZeQ)
32+
33+
5、[编程熊讲解LeetCode算法《堆》](https://mp.weixin.qq.com/s/ggd42G_QJ6I43F-vXSbpdA)
34+
35+
36+
37+
如果题解和文章对你有所帮助,欢迎**点赞**支持。

0 commit comments

Comments
 (0)