Skip to content

Instantly share code, notes, and snippets.

View rnkjoshi's full-sized avatar
🌧️
Computing

Ronak Joshi rnkjoshi

🌧️
Computing
View GitHub Profile
@FedericoPonzi
FedericoPonzi / Main.java
Last active January 21, 2021 06:47
Google's compression and decompression challange
package me.fponzi;
class Main {
static class Pair{
// Result string
String ret;
// Position of the consumed portion of the string.
int val;
public Pair( String ret, int val) {