Skip to content

Instantly share code, notes, and snippets.

View ch-hristov's full-sized avatar

Christo S. Christov ch-hristov

View GitHub Profile
@ch-hristov
ch-hristov / gist:82606677bebf8b633220
Last active August 29, 2015 14:17
Largest increasing subset
#include <iostream>
#include <stdio.h>
#include <string>
using namespace std;
int main()
{
@ch-hristov
ch-hristov / gist:c48e0878aae8ecc0282c
Last active August 29, 2015 14:17
Minimum count of items which are equal to s
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
int MAX = 9999999;