Skip to content

Instantly share code, notes, and snippets.

View 0x0kurooo's full-sized avatar
:octocat:
Learning ...

kuro 0x0kurooo

:octocat:
Learning ...
  • Viet Nam
View GitHub Profile
@0x0kurooo
0x0kurooo / solution.cpp
Created April 27, 2020 01:25
Word Count Engine
#include <iostream>
#include <string>
#include <vector>
#include <unordered_map>
#include <map>
using namespace std;
// Time complexity: O(N) for making occ map, O(logN) for making sorted map, and O(N) for buil the answer. So total is O(2N + logN)