mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-06 23:28:29 +08:00
docs: Update 1365,添加冒号,统一格式
This commit is contained in:
@ -138,7 +138,7 @@ public int[] smallerNumbersThanCurrent(int[] nums) {
|
|||||||
|
|
||||||
### Python:
|
### Python:
|
||||||
|
|
||||||
> 暴力法
|
> 暴力法:
|
||||||
|
|
||||||
```python3
|
```python3
|
||||||
class Solution:
|
class Solution:
|
||||||
@ -155,7 +155,7 @@ class Solution:
|
|||||||
return res
|
return res
|
||||||
```
|
```
|
||||||
|
|
||||||
> 排序+hash
|
> 排序+hash:
|
||||||
|
|
||||||
```python3
|
```python3
|
||||||
class Solution:
|
class Solution:
|
||||||
@ -274,7 +274,7 @@ function smallerNumbersThanCurrent(nums: number[]): number[] {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
> 排序+hash
|
> 排序+hash:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
function smallerNumbersThanCurrent(nums: number[]): number[] {
|
function smallerNumbersThanCurrent(nums: number[]): number[] {
|
||||||
|
Reference in New Issue
Block a user