Adam James·Oct 31, 2021LeetCThis week I’m working on the LeetCode Reverse Array problem. This function will accept an array of numbers and an integer, the array will…
Adam James·Oct 24, 2021LeetCode: Valid AnagramThis week’s coding challenge comes from Leetcode, the Valid Anagram challenge. The function you’re required to create in this challenge…
Adam James·Oct 15, 2021LeetCode Challenge: First Unique Character in a StringThis week’s coding challenge is the First Unique Character in a String challenge on LeetCode. This challenge’s instructions are relatively…
Adam James·Oct 10, 2021Firebase DatabasesIn 2014, Google acquired a company called Firebase, which develops an API that stores data from mobile and web applications on a unified…
Adam James·Sep 30, 2021React Hooks: useReducerWhile updating my React project to use hooks, I used a few of the more essential hooks. From React, I used useState to manage state and…
Adam James·Sep 24, 2021React: Search ComponentWhile I was building out my final React project for Flatiron School, I had a list of features that sat under a “might get to eventually but…
Adam James·Sep 19, 2021LeetCode Two Sum Solution: ObjectsLast week, I wrote about a solution to LeetCode’s Two Sum problem. My solution passed all of the test cases, to return the indexes of two…
Adam James·Sep 11, 2021LeetCode CThis week, I’m working on the Two Sum LeetCode challenge. This challenge requires you to write a function that takes in an array of…
Adam James·Sep 4, 2021Throughout learning more about JavaScript and coding there has been one JavaScript method that I…The web documentation says that the best way to describe how reduce() works is to sum all of the values of an array. If you pass a…
Adam James·Aug 28, 2021Valid Palindrome Using Every MethodThis week, I decided to return to the Valid Palindrome challenge I wrote about a couple months ago. The solution I came up with was…