2508/FindDiagonalOrder #2

Merged
mhhung merged 4 commits from 2508/FindDiagonalOrder into main 2025-08-25 03:58:50 +00:00
3 changed files with 15 additions and 0 deletions
Showing only changes of commit 541227b060 - Show all commits

View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,5 @@
public class Solution {
public int[] FindDiagonalOrder(int[][] mat) {
}
}

View File