hexablog.hashnode.devSorting in PythonMost times when finding solutions to a problem first sorting the data can greatly simplify the process and also produce a faster and cleaner solution. An example is finding the 1st and 2nd greatest number in a list. After sorting in descending order ...Mar 6, 2022·4 min read
hexablog.hashnode.devTech Newbies and the Dangers of Being a Jack Of All TradesBeing a jack of all trades in the tech space has its benefits. These benefits are of great importance to startup tech companies because they reduce costs by using one developer to service many job roles. This is dangerous, especially to beginners. Pr...Jan 25, 2022·2 min read
hexablog.hashnode.devHNGI8 Internship GoalsMy name is Josiah Augustine. I am a Backend Developer from Delta State. I have been coding with Python for fun over 5 years now. I have decided to build a career in tech and that is why I am in HNGi8 Remote internship. My goals for this internship in...Aug 16, 2021·1 min read
hexablog.hashnode.devBetter, worst or equal time complexityI was solving an algorithm problem which has to do with combinations from AlgorithmFridays I defined a function combinate combinate(combos, string): new_combo = [] for combo in combos: for char in string: new_combo.append...May 31, 2021·1 min read