Skip to content

Instantly share code, notes, and snippets.

View paulofelipefeitosa's full-sized avatar
🎯
Focusing

Paulo Felipe paulofelipefeitosa

🎯
Focusing
View GitHub Profile
#include <bits/stdc++.h>
#define ALPHABET_SIZE 27
using namespace std;
class TrieNode
{
public: TrieNode* children[ALPHABET_SIZE];
public: int qntChild;
public: bool endWord;