Update 383 solution

This commit is contained in:
halfrost
2021-12-13 21:21:21 +08:00
parent 481b1ddfa1
commit 7d760f1091
7 changed files with 79 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# [383. Ransom Note](https://leetcode-cn.com/problems/ransom-note/)
# [383. Ransom Note](https://leetcode.com/problems/ransom-note/)
## 题目
@ -38,7 +38,7 @@ magazine 中的每个字符只能在 ransomNote 中使用一次。
## 解题思路
- ransomNotemagazine都是由小写字母组成所以用数组进行简单的字符统计
- ransomNotemagazine 都是由小写字母组成,所以用数组进行简单的字符统计
## 代码