Skip to content

Instantly share code, notes, and snippets.

View abhinavpanse's full-sized avatar
🏠
Working from home

abhinavpanse

🏠
Working from home
View GitHub Profile
@abhinavpanse
abhinavpanse / Main.java
Created July 30, 2017 17:49
My Java FastIO
import java.io.*;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
Solve();
}
static void Solve() throws IOException {
/* Merge sort in C */
#include<stdio.h>
#include<stdlib.h>
// Function to Merge Arrays L and R into A.
// lefCount = number of elements in L
// rightCount = number of elements in R.
void Merge(int *A,int *L,int leftCount,int *R,int rightCount) {
int i,j,k;
import java.io.*;
import java.util.*;
import java.lang.*;
public class Encryption {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
//System.out.println(str.length());