From 611c70050fc62cab64a890836ff049f92d9d574d Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Thu, 27 Aug 2020 09:35:09 -0400 Subject: [PATCH] added original author to the description --- data_structures/trie_tree.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/data_structures/trie_tree.cpp b/data_structures/trie_tree.cpp index d299d176d..ea2ce60c4 100644 --- a/data_structures/trie_tree.cpp +++ b/data_structures/trie_tree.cpp @@ -1,5 +1,6 @@ /** * @file + * @author [@Arctic2333](https://github.com/Arctic2333) * @author [Krishna Vedala](https://github.com/kvedala) * @brief Implementation of [Trie](https://en.wikipedia.org/wiki/Trie) data * structure for English alphabets in small characters.