youtube-code/2022-12-09-Big-O-Notation/Linear/Program.cs

26 lines
404 B
C#
Raw Normal View History

2022-12-08 12:13:53 +00:00
using System;
namespace Linear
{
internal class Program
{
static void Main(string[] args)
{
var n = 10;
for (int i = 0; i < n; i++)
{
Console.WriteLine(i);
}
for (int i = 0; i < n; i++)
{
Console.WriteLine(i);
}
}
}
}