This file contains 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
import java.util.*; | |
import java.io.*; | |
public class Main{ | |
public static void main(String[] args) throws IOException{ | |
Scanner sc = new Scanner(System.in); | |
String a = sc.next(); | |
String b = sc.next(); | |
int lenA = a.length(); | |
int lenB = b.length(); |
This file contains 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
import java.util.Scanner; | |
class Main{ | |
static long[][] d = new long[15][15]; | |
public static void main(String[] args){ | |
Scanner sc = new Scanner(System.in); | |
int t=sc.nextInt(); | |
int[][] tCase = new int[t][2]; | |
for(int i = 0 ; i < t ; i++){ | |
tCase[i][0]=sc.nextInt(); |
This file contains 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
import java.util.Scanner; | |
class Main{ | |
static long[][] d = new long[15][15]; | |
public static void main(String[] args){ | |
Scanner sc = new Scanner(System.in); | |
int a = sc.nextInt(); int b =sc.nextInt(); int c=sc.nextInt(); | |
int s1, s2; | |
s1=b-a; s2=c-b; |
This file contains 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
recover.c | |
/** | |
* Copies a BMP piece by piece, just because. | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "bmp.h" |
This file contains 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
#include <stdio.h> | |
int main() | |
{ | |
printf("hello world"); | |
return 0; | |
} |