Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion problems/0977.有序数组的平方.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ class Solution:
new_list.append(nums[left] ** 2)
left += 1
return new_list[::-1]
```

### Go:

Expand Down Expand Up @@ -539,7 +540,7 @@ public class Solution {
return result;
}
}

```
C# LINQ:
```csharp
public class Solution {
Expand All @@ -553,3 +554,4 @@ public class Solution {
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
</a>