From fd505712011729d5abb353073cafaaba0b814e6a Mon Sep 17 00:00:00 2001 From: fw_qaq Date: Mon, 13 Feb 2023 17:49:40 +0800 Subject: [PATCH] =?UTF-8?q?Update=200977.=E6=9C=89=E5=BA=8F=E6=95=B0?= =?UTF-8?q?=E7=BB=84=E7=9A=84=E5=B9=B3=E6=96=B9.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add rust highlighting --- problems/0977.有序数组的平方.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();