It has been a loooonnnng time since I blogged, 4 years and counting…
I’ve “decided” that perhaps I should do more on this blog, so this is my first attempt to blog more actively.
I think one of the most common problems bloggers face is the lack of ideas to blog about. I came up with a few “solutions” for my blog… one of which is to present a coding question/problem/challenge on my blog each week and post my solution and explanation. I think this will be a good way for new programmers to learn. For a start, I’ll be focusing on Python. If time permits in future, I’ll add challenges for other languages too.
You are more than welcome to critique my solutions and contribute your own challenges/solutions. Let’s all learn together! If you would like to contribute your own challenges or solutions, you can leave a comment here or drop me an email at [email protected]
Alright, enough with the introduction. Let’s kick off this blog series with our first challenge.
Written by Jamie | Last Updated August 28, 2019
Recent Posts
How To Solve The Leetcode Minimum Path Sum Problem - An Easy To Understand Python Solution
For today's post, we'll discuss the Minimum Path Sum problem from Leetcode. What is the Minimum Path Sum problem? The minimum path sum problem requires us to write a function called minPathSum()...
Adding comments to our Python code is an important task that many programmers are familiar with. More often than not, we find that we need to add multiline comments to our code in...