Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<RootNamespace>_350._Intersection_of_Two_Arrays_II</RootNamespace>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
10
350. Intersection of Two Arrays II/Program.cs
Normal file
10
350. Intersection of Two Arrays II/Program.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace _350._Intersection_of_Two_Arrays_II
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello, World!");
|
||||
}
|
||||
}
|
||||
}
|
||||
9
350. Intersection of Two Arrays II/Solution.cs
Normal file
9
350. Intersection of Two Arrays II/Solution.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace _350._Intersection_of_Two_Arrays_II;
|
||||
|
||||
public class Solution
|
||||
{
|
||||
public int[] Intersect(int[] nums1, int[] nums2)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user