mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-06 07:06:42 +08:00
docs: Update 1365,添加冒号,统一格式
This commit is contained in:
@ -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[] {
|
||||
|
Reference in New Issue
Block a user