Skip to content

Instantly share code, notes, and snippets.

@issa-me-sush
issa-me-sush / dsaprogram
Last active July 2, 2021 12:55
dsa project
//sushaan shetty-20BCB0150
#include <iostream>
#include <unordered_map>
#include <cstring>
#include <bits/stdc++.h>
using namespace std;
struct TrieNodes {
TrieNodes* Trie[256];