Skip to content

Commit c7b3018

Browse files
committed
✨style: Modify 1220
1 parent ae5aa68 commit c7b3018

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

LeetCode/1211-1220/1220. 统计元音字母序列的数目(困难).md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ class Solution {
116116
}
117117
```
118118
-
119-
```Python3
119+
120+
```Python
120121
MOD = int(1e9) + 7
121122
class Solution:
122123
def countVowelPermutation(self, n: int) -> int:
@@ -130,6 +131,7 @@ class Solution:
130131
return (((((f[-1][0] + f[-1][1]) % MOD + f[-1][2]) % MOD + f[-1][3]) % MOD) + f[-1][4]) % MOD
131132
```
132133
-
134+
133135
```Go
134136
const MOD int = 1e9 + 7
135137
func countVowelPermutation(n int) int {
@@ -363,7 +365,7 @@ class Solution {
363365
}
364366
```
365367
-
366-
```Python3
368+
```python
367369
import numpy as np
368370
MOD = 10 ** 9 + 7
369371
dtype = np.dtype('uint64')

0 commit comments

Comments
 (0)