This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Deploy | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: self-hosted |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ctMatchHistory { firstHalf: | |
| [ { type: 'lost', roundOrdinal: 1, survivingPlayers: 0 }, | |
| { type: 'Terrorists_Win', roundOrdinal: 2, survivingPlayers: 1 }, | |
| { type: 'lost', roundOrdinal: 3, survivingPlayers: 0 }, | |
| { type: 'lost', roundOrdinal: 4, survivingPlayers: 0 }, | |
| { type: 'lost', roundOrdinal: 5, survivingPlayers: 0 }, | |
| { type: 'Target_Bombed', roundOrdinal: 6, survivingPlayers: 2 }, | |
| { type: 'Terrorists_Win', roundOrdinal: 7, survivingPlayers: 1 }, | |
| { type: 'Terrorists_Win', roundOrdinal: 8, survivingPlayers: 3 }, | |
| { type: 'Terrorists_Win', roundOrdinal: 9, survivingPlayers: 2 }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CSourceTVGameSmall { | |
| players: | |
| [ Player { account_id: 117587043, hero_id: 73 }, | |
| Player { account_id: 481303474, hero_id: 21 }, | |
| Player { account_id: 136335606, hero_id: 70 }, | |
| Player { account_id: 137944511, hero_id: 7 }, | |
| Player { account_id: 117199412, hero_id: 63 }, | |
| Player { account_id: 131766964, hero_id: 3 }, | |
| Player { account_id: 135656964, hero_id: 42 }, | |
| Player { account_id: 216067541, hero_id: 15 }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "map":{ | |
| "round_wins":{ | |
| "1":"ct_win_elimination", | |
| "2":"ct_win_elimination", | |
| "3":"t_win_elimination", | |
| "4":"t_win_elimination", | |
| "5":"ct_win_defuse", | |
| "6":"ct_win_elimination", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Лабораторна #2, 2 семестр | |
| // Створити масив структур. | |
| // Кожна структура складається з таких елементів: місто, інститут, факультет. | |
| // Для інституту задається план прийому на перший курс. Для факультету задається список спеціальностей. | |
| // Створений масив записати до бінарного файла. | |
| // Передбачити можливість доповнити файл, замінити дані в файлі, видалити дані з файлу. | |
| // Реалізувати запити, визначивши: 1) список спеціальностей, що містять у своїй назві слова "комп'ютерний" або "автоматизований"; | |
| // 2) факультети й інститути, де є задана спеціальність; | |
| // 3) факультет, інститут і місто, де на вказану користувачем спеціальність виділено найбільше місць. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Лабораторна #1, 2 семестр | |
| //Увести з клавіатури рядки і записати їх у текстовий файл. | |
| // У кожному непарному рядку визначити слово, що має найбільшу кількість головних. | |
| // Дописати знайдені слова в кожний рядок файлу. | |
| #include <iostream> | |
| #include <fstream> | |
| #include <cstring> | |
| using namespace std; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package lvl2c; | |
| import java.util.Arrays; | |
| public class Main { | |
| public static void main(String[] args) { | |
| int[] A = new int[] {1,2,3,4,5}; | |
| comb(A,0); | |
| } | |
| static void comb(int[] A, int i) { | |
| if (i == A.length - 1) { | |
| System.out.println(Arrays.toString(A)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package lvl2b; | |
| public class Main | |
| { | |
| public static void main(String[] args) | |
| { | |
| System.out.print("Maximum polindrom like product from 2 3-numbered value is: "); | |
| System.out.print(polindrom(999,999)[0]+" with this values: "+polindrom(999,999)[1]+" and "+polindrom(999,999)[2]); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package lvl2a; | |
| import java.util.Scanner; | |
| public class Main { | |
| public static void main(String[] args) { | |
| Scanner sc=new Scanner (System.in); | |
| int []A=new int [5]; | |
| System.out.println("Input sequence of 5 values : "); | |
| for (int i=0;i<A.length;i++) { |
NewerOlder