Skip to content

Instantly share code, notes, and snippets.

View subhadipghs's full-sized avatar
👨‍💻

Subhadip Ghosh subhadipghs

👨‍💻
View GitHub Profile
@subhadipghs
subhadipghs / day-2-part-1.cpp
Created December 2, 2022 18:47
Advent of code 2022 Day 2 Part 1
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <unordered_map>
#include <vector>
using namespace std;
vector<string> split(string s, char delim)
@subhadipghs
subhadipghs / day-2-part-2.cpp
Created December 2, 2022 18:48
Advent of code 2022 Day 2 Part 2
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <unordered_map>
#include <vector>
using namespace std;
using namespace std::chrono;