From a868ae4d2e985da8abe18a1d9e91378a305bc8ce Mon Sep 17 00:00:00 2001 From: SecondaryRainbow <927497402@qq.com> Date: Sun, 11 Aug 2024 20:40:35 +0800 Subject: [PATCH] =?UTF-8?q?977=E9=A2=98=E7=9B=B8=E5=85=B3=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改了977题Go语言代码附近的格式,以及C#代码附近的格式,使其能够正常显示。(原本Go与python代码合到一起了) --- problems/0977.有序数组的平方.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/problems/0977.有序数组的平方.md b/problems/0977.有序数组的平方.md index 7119dda5..effa9055 100644 --- a/problems/0977.有序数组的平方.md +++ b/problems/0977.有序数组的平方.md @@ -207,6 +207,7 @@ class Solution: new_list.append(nums[left] ** 2) left += 1 return new_list[::-1] +``` ### Go: @@ -539,7 +540,7 @@ public class Solution { return result; } } - +``` C# LINQ: ```csharp public class Solution { @@ -553,3 +554,4 @@ public class Solution { +