docs: Update 1365,添加冒号,统一格式

This commit is contained in:
Yuan Yuan
2024-12-04 12:45:00 -06:00
committed by GitHub
parent 66caa02935
commit 53397d452e

View File

@ -138,7 +138,7 @@ public int[] smallerNumbersThanCurrent(int[] nums) {
### Python
> 暴力法
> 暴力法
```python3
class Solution:
@ -155,7 +155,7 @@ class Solution:
return res
```
> 排序+hash
> 排序+hash
```python3
class Solution:
@ -274,7 +274,7 @@ function smallerNumbersThanCurrent(nums: number[]): number[] {
};
```
> 排序+hash
> 排序+hash
```typescript
function smallerNumbersThanCurrent(nums: number[]): number[] {