You might be wondering why would I want to use quick sort versus other sorting algorithms? Well as the name suggests, this algorithm is quick! Quick sort is usually quick and usually faster compared to some of the other sort methods but there are some downsides to everything, which means there are downsides to quick sort!
Now one of the disadvantages of quick sort is that it is recursive, and the implementation can be frustrating and complicated. Another disadvantage of quick sort is that it can be easily broken and causing it to not perform correctly or badly with the…
Stacks and Queues are important and useful when you want to be able to get things in an order of your choosing. If you wanted to be able to retrieve data in the order that you put them in, then you would want to use a queue. If you would want to be able to retrieve data in the opposite or reverse order that they were put in, then you would use stacks. In this blog, I will be going more in-depth about these two data structures.
A stack is stack of data, where you can only add to the…
Every web developer needs to use CSS (Cascading Style Sheets) CSS some people hate it, others love it. If you don’t know what CSS an easy way is to think about it is that CSS for a Web page is equivalent to what clothes are to us! They are what we use to style ourselves, clothes allow us to be able to dress in all sorts of different way, which is the same for what CSS can do to a Web page! CSS can also be kind of boring for some or even difficult to newcomers! …
I’m sure many of us have come across regular expression (RegEx) before and were confused about what we are looking at. At first, I just nodded my head and agreed to whatever it was that I copied and pasted because my code worked. However, I find myself needing RegEx more than I would like and would have to try and google what I wasting a lot of my time. …
If you are thinking about joining a code bootcamp you might be curious to know what to expect and what it really is like. Before I joined coding bootcamp I did a lot of research through different types of outlets such as Youtube, Reddit, reaching out to previous Alumni’s through Linkedin and more. I looked for topics regarding expectations of what a successful student looks like, how the program would run via online during quarantine, and overall if this was ultimately going to be the right decision. If you may be in the same predicament that I may have been…