更新 491.递增子序列 修正子标题md格式

This commit is contained in:
5Reason
2022-12-09 14:54:53 +08:00
parent 2dab87687d
commit 50aba633cc

View File

@ -396,7 +396,7 @@ var findSubsequences = function(nums) {
``` ```
## TypeScript ### TypeScript
```typescript ```typescript
function findSubsequences(nums: number[]): number[][] { function findSubsequences(nums: number[]): number[][] {
@ -542,7 +542,7 @@ int** findSubsequences(int* nums, int numsSize, int* returnSize, int** returnCol
} }
``` ```
## Swift ### Swift
```swift ```swift
func findSubsequences(_ nums: [Int]) -> [[Int]] { func findSubsequences(_ nums: [Int]) -> [[Int]] {
@ -573,7 +573,7 @@ func findSubsequences(_ nums: [Int]) -> [[Int]] {
``` ```
## Scala ### Scala
```scala ```scala
object Solution { object Solution {