A Trie is a tree like data structure used for storing words in a way which facilitates fast look-ups. They prove very useful for handling dictionaries. In Part 1 we defined the trie data structure and started outlining the code for it. In this articles we are going to take a look at the basic operation we can do on a trie: Insert, Query…
Monthly Archives: May 2017

WWDC 2017
WWDC is Apple’s annual Worldwide Developers Conference, a great chance for all developers around the world to meet the best engineers from Apple and to get the latest insights about their favorite products and latest technologies. It’s a great event where you can learn new things from valuable workshops, hands-on labs, software sessions, thematic meetings and many more special events.…

Advanced Firebase For The Win
Introduction With Firebase 101 we introduced the basic features of firebase and most of it’s database features. With this tutorial, we’re continuing the presentation of Firebase with some more advanced topics: Authentication: In most apps, some data needs to be restricted to certain users. A user may want to share information with his friends, but may not like to have…