Blog

Here are some blog posts containing things I learnt on my programming journey that I would like to share. I hope you find them useful. Cheers

AllReactAlgorithms

03 August, 2020

Big O Asymptotic Analysis

If you have ever applied for a job at a Tech company or if you offered Computer Science in the university, there is a probability you have…

Algorithms

04 August, 2020

Constant Runtime

Constant runtime O(1) / time complexity is the term used to refer to an algorithm which will always execute in the same amount of time…

Algorithms

05 August, 2020

Linear Runtime O(n)

Linear runtime O(n) / time complexity is a term applied to algorithms whose performance and time complexity grow linearly and proportionally…

Algorithms

06 August, 2020

Quadratic Runtime

It basically describes an algorithm whose performance or runtime is proportional to the square of the size of the input or data. this is…

Algorithms

30 September, 2020

Setting Up React With Parcel

Hello everyone 👋. In this post, I am going to show you how to get started with React using the Parcel bundler. Parcel is a zero…

React