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
➜ examples git:(v1.65.0) (cd android/helloworld; ../../gradlew installDebug -android.useAndroidX=true ) | |
FAILURE: Build failed with an exception. | |
* What went wrong: | |
Problem configuring task :app:installDebug from command line. | |
> Unknown command-line option '-n'. | |
* Try: | |
> Run gradlew help --task :app:installDebug to get task usage details. |
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
examples git:(v1.65.0) (cd android/helloworld; ../../gradlew installDebug) | |
WARNING:We recommend using a newer Android Gradle plugin to use compileSdk = 34 | |
This Android Gradle plugin (7.4.0) was tested up to compileSdk = 33 | |
This warning can be suppressed by adding | |
android.suppressUnsupportedCompileSdk=34 | |
to this project's gradle.properties | |
The build will continue, but you are strongly encouraged to update your project to |
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
plugins { | |
id 'java' | |
id 'application' | |
id 'org.springframework.boot' version '3.3.1' | |
id 'io.spring.dependency-management' version '1.1.5' | |
id 'org.openapi.generator' version '7.7.0' | |
} | |
group = 'dev.fizlrock' | |
version = '0.0.1-SNAPSHOT' |
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
using System; | |
public class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
string[] temps = Console.ReadLine().Split(" "); | |
string mode = Console.ReadLine(); | |
int troom, tcond; | |
troom = int.Parse(temps[0]); |
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
; 6302 Михайлов А.И. Вариант №14 | |
; Из исходного массива X чисел со знаком получить два новых Y, Z, поместив в первый | |
; из них нечетные значения элементов массива, а во второй – их номера. | |
; Использую компилятор nasm. Вроде никто не против... | |
; В файле stud_io_.inc макросы для удобного ввода-вывода |
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
; 6302 Михайлов А.И. Вариант №14 | |
; Из исходного массива X чисел со знаком получить два новых Y, Z, поместив в первый | |
; из них нечетные значения элементов массива, а во второй – их номера. | |
; Использую компилятор nasm. Вроде никто не против... | |
; В файле stud_io_.inc макросы для удобного ввода-вывода |
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
List users. Empty balances. | |
{ | |
"name": "boris", | |
"amount": "0" | |
} | |
{ | |
"name": "maria", | |
"amount": "0" | |
} | |
{ |
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
using Task1; | |
namespace Tests; | |
[TestFixture] | |
public class GetScoreTests | |
{ |
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
public Score getScore(int offset) | |
{ | |
Score result = new Score(-1, -1); | |
if (offset == 0) result = new Score(0, 0); | |
else if (gameStamps.Length != 0 && offset > 0) | |
{ | |
int distance = gameStamps.Length; | |
int left = 0, right = distance; | |
int middle; |