Day6. Namespace style
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
namespace _283._Move_Zeroes
|
||||
namespace _283._Move_Zeroes;
|
||||
|
||||
internal class Program
|
||||
{
|
||||
internal class Program
|
||||
static void Main(string[] args)
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var test = new int[] { 0, 1, 0, 3, 12 };
|
||||
new Solution().MoveZeroes(test);
|
||||
Console.WriteLine(String.Join(" ", test));
|
||||
}
|
||||
var test = new int[] { 0, 1, 0, 3, 12 };
|
||||
new Solution().MoveZeroes(test);
|
||||
Console.WriteLine(String.Join(" ", test));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user