using list instead of bits/stdc++.h

This commit is contained in:
foo290
2021-08-12 14:07:22 +05:30
parent d361eb15de
commit 19d09e8590

View File

@@ -45,10 +45,10 @@
* @author [Nitin Sharma](https://github.com/foo290) * @author [Nitin Sharma](https://github.com/foo290)
* */ * */
#include <bits/stdc++.h> /// for std::list #include <list> /// for std::list
#include <cassert> /// for assert #include <cassert> /// for assert
#include <iostream> /// for IO Operations #include <iostream> /// for IO Operations
#include <unordered_map> /// for std::unordered_map
/** /**
* @namespace lru_cache * @namespace lru_cache