修正 633. 两数平方和(Sum of Square Numbers)难度提示

633. 两数平方和(Sum of Square Numbers)
国际区和中国区都显示 Medium 难度

参见:
[Leetcode](https://leetcode.com/problems/sum-of-square-numbers/description/)
[力扣](https://leetcode-cn.com/problems/sum-of-square-numbers/description/)
This commit is contained in:
Wang Qin 2021-06-10 22:59:58 +08:00 committed by GitHub
parent a8c5a57065
commit d7aabeb18c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ public int[] twoSum(int[] numbers, int target) {
## 2. 两数平方和 ## 2. 两数平方和
633\. Sum of Square Numbers (Easy) 633\. Sum of Square Numbers (Medium)
[Leetcode](https://leetcode.com/problems/sum-of-square-numbers/description/) / [力扣](https://leetcode-cn.com/problems/sum-of-square-numbers/description/) [Leetcode](https://leetcode.com/problems/sum-of-square-numbers/description/) / [力扣](https://leetcode-cn.com/problems/sum-of-square-numbers/description/)