Skip to content

Instantly share code, notes, and snippets.

View aKKKo's full-sized avatar

Konstantin aKKKo

View GitHub Profile
@aKKKo
aKKKo / gist:32cf2d545589dff31da614d7a8fa09fd
Created June 6, 2025 11:56
Объединение в одну коллекцию
using System;
using System.Collections.Generic;
namespace MergingIntoOneCollection
{
internal class Program
{
static void Main(string[] args)
{
string[] firstSetOfNumbers = { "1", "2", "1" };
@aKKKo
aKKKo / gist:a6eafbdcf8497f67c4e79394c95b5b26
Created June 6, 2025 10:52
Объединение в одну коллекцию
using System;
using System.Collections.Generic;
namespace MergingIntoOneCollection
{
internal class Program
{
static void Main(string[] args)
{
string[] firstArray = { "1", "2", "1" };
@aKKKo
aKKKo / gist:b5f763937cf6a56c94d9ad6689bbb61e
Created June 6, 2025 10:51
Объединение в одну коллекцию
using System;
using System.Collections.Generic;
namespace MergingIntoOneCollection
{
internal class Program
{
static void Main(string[] args)
{
string[] firstArray = { "1", "2", "1" };
@aKKKo
aKKKo / gist:c3928f8291e285b2f3ad2d5c3695fe93
Created June 6, 2025 09:28
Объединение в одну коллекцию
using System;
using System.Collections.Generic;
namespace MergingIntoOneCollection
{
internal class Program
{
static void Main(string[] args)
{
string[] firstStringArray = { "1", "2", "1" };
@aKKKo
aKKKo / gist:da44a798dc91ea04a60e6b3b4d6c319b
Created June 5, 2025 10:23
Кадровый учет продвинутый
using System;
using System.Collections.Generic;
using System.Linq;
namespace PersonnelRecordsAdvanced
{
internal class Program
{
static void Main(string[] args)
{
@aKKKo
aKKKo / gist:1decba774a1e78695e6b69c4c5c8d7e8
Created June 3, 2025 07:50
ДЗ: Кадровый учет продвинутый
using System;
using System.Collections.Generic;
namespace PersonnelRecordsAdvanced
{
internal class Program
{
static void Main(string[] args)
{
const string CommandAddProfile = "1";
@aKKKo
aKKKo / gist:0c605bfe5aec424580e0aecd09529a70
Created May 30, 2025 11:03
Динамический массив продвинутый
using System;
using System.Collections.Generic;
using System.Linq;
namespace DynamicArrayAdvanced
{
internal class Program
{
static void Main(string[] args)
{
@aKKKo
aKKKo / gist:d892e10c76353bd72bf7add5fdded228
Created May 30, 2025 10:07
Динамический массив продвинутый
using System;
using System.Collections.Generic;
using System.Linq;
namespace DynamicArrayAdvanced
{
internal class Program
{
static void Main(string[] args)
{
@aKKKo
aKKKo / gist:ca09104ed330753cc31d9ebc4e47c373
Created May 30, 2025 09:07
Динамический массив продвинутый
using System;
using System.Collections.Generic;
using System.Linq;
namespace DynamicArrayAdvanced
{
internal class Program
{
static void Main(string[] args)
{
@aKKKo
aKKKo / gist:f8699a60a41ee0fd896d20fa0fc02750
Created May 28, 2025 13:52
Очередь в магазине
using System;
using System.Collections.Generic;
namespace LineAtTheStore
{
internal class Program
{
static void Main(string[] args)
{
int account = 0;