Refactor almost everything

This commit is contained in:
Arkaprabha Chakraborty
2022-08-02 12:21:43 +05:30
parent ccc376aea0
commit cab1180397
39 changed files with 117 additions and 54 deletions

View File

@@ -2,7 +2,7 @@
#include <unordered_map>
class Solution {
public:
public:
bool isAnagram(std::string s, std::string t) {
if (s.size() == t.size()) {
std::unordered_map<char, int> hmap[2];