Skip to content

Commit e1cc3fd

Browse files
Merge pull request SharingSource#255 from SharingSource/ac_oier
✨style: Update 372
2 parents 375b8aa + 9491d0b commit e1cc3fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LeetCode/371-380/372. 超级次方(中等).md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Tag : 「数学」、「快速幂」
3636
提示:
3737
* $1 <= a <= 2^{31} - 1$
3838
* $1 <= b.length <= 2000$
39-
* `0 <= b[i] <= 9`
39+
* $0 <= b[i] <= 9$
4040
* b 不含前导 0
4141

4242
---
@@ -45,7 +45,7 @@ Tag : 「数学」、「快速幂」
4545

4646
根据题意,要我们求得的是 $a^b \bmod {1337}$ 的值,其中 $b$ 是以数组形式给出。
4747

48-
刚一看是一道快速幂的题目(事实上也确实可以使用快速幂,但不是必须),但由于 $b$ 是数组形式,因此我们还需要对其进行分解。
48+
刚一看是一道快速幂的题目(事实上也确实可以使用快速幂,但不是必须),由于 $b$ 是数组形式,因此我们还需要对其进行分解。
4949

5050
假设 $b$ 所代表的数值为 $K$,则有:
5151

0 commit comments

Comments
 (0)