diff --git a/problems/0977.有序数组的平方.md b/problems/0977.有序数组的平方.md index 996a7cee..57f8de02 100644 --- a/problems/0977.有序数组的平方.md +++ b/problems/0977.有序数组的平方.md @@ -179,7 +179,7 @@ func sortedSquares(nums []int) []int { } ``` Rust -``` +```rust impl Solution { pub fn sorted_squares(nums: Vec) -> Vec { let n = nums.len();