Skip to content

Instantly share code, notes, and snippets.

@FinnADV
FinnADV / gist:78444a9d1e35cd2671516cf2c198bd73
Last active February 16, 2026 18:20
ДЗ: Перевод бойцов
using System;
using System.Collections.Generic;
using System.Linq;
namespace TransferOfFighters
{
internal class Program
{
static void Main(string[] args)
{
@FinnADV
FinnADV / gist:999f4ab3072ca3c103065f8362faa689
Last active February 16, 2026 14:53
ДЗ: Отчёт о вооружении
using System;
using System.Collections.Generic;
using System.Linq;
namespace WeaponsReport
{
internal class Program
{
static void Main(string[] args)
{
@FinnADV
FinnADV / gist:55974e9ff6b2123ebf2ecb50d0ce7ded
Created February 15, 2026 19:21
ДЗ: Определение просрочки
using System;
using System.Collections.Generic;
using System.Linq;
namespace DefinitionOfDelay
{
internal class Program
{
static void Main(string[] args)
{
@FinnADV
FinnADV / gist:51f5c1a61b200826ac2cbfa5e599505c
Last active February 14, 2026 19:19
ДЗ: Топ игроков сервера
using System;
using System.Collections.Generic;
using System.Linq;
namespace TopPlayer
{
internal class Program
{
static void Main(string[] args)
{
@FinnADV
FinnADV / gist:659c08c1be2a3ec53ae47d037e425afa
Last active February 14, 2026 18:16
ДЗ: Анархия в больнице
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using static AnarchyHospital.DiseaseType;
namespace AnarchyHospital
{
internal class Program
{
@FinnADV
FinnADV / gist:4e9bf0b5e7117705a97382b1e2f500e2
Last active February 13, 2026 12:48
ДЗ: Амнистия
using System;
using System.Collections.Generic;
using System.Linq;
using static Amnesty.CrimeType;
namespace Amnesty
{
internal class Program
{
static void Main(string[] args)
@FinnADV
FinnADV / gist:d60255d0068231aca05f8ba2e912379a
Last active February 12, 2026 11:43
ДЗ: Поиск преступника
using System;
using System.Collections.Generic;
using System.Linq;
namespace SearchForCulprit
{
internal class Program
{
static void Main(string[] args)
{
@FinnADV
FinnADV / gist:dd493999616dfb0b3649341923a0d817
Last active February 10, 2026 09:57
ДЗ: Автосервис
using System;
using System.Collections.Generic;
using System.Linq;
namespace CarService
{
internal class Program
{
static void Main(string[] args)
{
@FinnADV
FinnADV / gist:c3b235edf466fb548493d7b3792adbc9
Last active February 4, 2026 09:39
Дз: Зоопарк
using System;
using System.Collections.Generic;
namespace Zoo
{
internal class Program
{
static void Main(string[] args)
{
ZooFactory zooFactory = new ZooFactory();
@FinnADV
FinnADV / gist:5617d5f60fcaa4257cd077aed2bae4dc
Last active January 15, 2026 10:21
ДЗ: Зоопарк
using System;
using System.Collections.Generic;
namespace Zoo
{
internal class Program
{
static void Main(string[] args)
{
ZooView zooView = new ZooView();