Skip to content
Learn Coding Fast Logo IS
Search
  • Home
  • My Books
  • Errata
  • Privacy Policy

Posts by Jamie

link to Python Programming Challenge 25: Merge Sorted Array

Python Programming Challenge 25: Merge Sorted Array

In today's post, we'll discuss the Merge Sorted Array problem from Leetcode. The Merge Sorted Array Problem For this problem, we're given two sorted integer arrays (known as lists in Python), nums1...

Continue Reading
link to Python Dictionary Of Lists

Python Dictionary Of Lists

A Python dictionary of lists refers to a dictionary that consists of lists as values. For instance, if dict1 = {'A': [1, 2, 3], 'B':[2, 5]} dict1 is a dictionary of lists, with the following...

Continue Reading

2 ways to find length of string in Python

There are two main ways to find the length of a string in Python. The first is to use the built-in len() function. Alternatively, if you do not want to use the len() function, you can use a...

Continue Reading
link to Python Programming Challenge 24: Leetcode 48 Rotate Image Problem

Python Programming Challenge 24: Leetcode 48 Rotate Image Problem

Today, we have yet another challenge from Leetcode - the Leetcode 48 Rotate Image problem. The Rotate Image Challenge For this challenge, you are given a n x n 2D matrix (as a list of list) that...

Continue Reading
link to Python Programming Challenge 23: Unique Paths II

Python Programming Challenge 23: Unique Paths II

In today's post, we'll talk about the Unique Paths II problem from Leetcode. If you have yet to check out our previous post on the Unique Paths problem, you should check it out first as today's...

Continue Reading
link to Python Programming Challenge 22: Climbing Stairs

Python Programming Challenge 22: Climbing Stairs

For today's post, we'll discuss the Climbing Stairs problem from Leetcode. The Climbing Stairs Problem The Climbing Stairs problem requires us to write a function called climbStairs() that accepts...

Continue Reading
« PREV Page 1 Page 2 Page 3 Page 4 … Page 10 NEXT »

About the Author

Author of the Learn Coding Fast Book Series

My Books on Amazon

Machine Learning

Machine Learning With Python For Beginners: A Step-By-Step Guide with Hands-On Projects (Learn Coding Fast with Hands-On Project Book 7)
Machine Learning With Python For Beginners: A Step-By-Step Guide with Hands-On Projects (Learn Coding Fast with Hands-On Project Book 7)

Python Series

Python (2nd Edition): Learn Python in One Day and Learn It Well. Python for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 1)
Python (2nd Edition): Learn Python in One Day and Learn It Well. Python for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 1)
Python Workbook: Learn Python in one day and Learn It Well (Workbook with Questions, Solutions and Projects) (Learn Coding Fast Workbook 1)
Python Workbook: Learn Python in one day and Learn It Well (Workbook with Questions, Solutions and Projects) (Learn Coding Fast Workbook 1)

Web Programming

PHP: Learn PHP in One Day and Learn It Well. PHP for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 6)
PHP: Learn PHP in One Day and Learn It Well. PHP for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 6)
SQL: Learn SQL (using MySQL) in One Day and Learn It Well. SQL for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 5)
SQL: Learn SQL (using MySQL) in One Day and Learn It Well. SQL for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 5)
CSS (with HTML5): Learn CSS in One Day and Learn It Well. CSS for Beginners with Hands-on Project. Includes HTML5. (Learn Coding Fast with Hands-On Project Book 2)
CSS (with HTML5): Learn CSS in One Day and Learn It Well. CSS for Beginners with Hands-on Project. Includes HTML5. (Learn Coding Fast with Hands-On Project Book 2)

General-Purpose Languages

C#: Learn C# in One Day and Learn It Well. C# for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 3)
C#: Learn C# in One Day and Learn It Well. C# for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 3)
Java: Learn Java in One Day and Learn It Well. Java for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 4)
Java: Learn Java in One Day and Learn It Well. Java for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book 4)

LEGAL INFORMATION

LearnCodingFast.com is a participant in the Amazon Services LLC Associates Program and the Udemy affiliate program. This means that we may get a commission from Amazon or Udemy if you purchase through the links on this website. This is at no extra cost to you and will help us pay for the maintenance of this site. Please note that we have not been given any free products, services or anything else by these companies in exchange for mentioning them on the site. The only consideration is in the form of affiliate commissions.

© 2025 Copyright Learn Coding Fast
Scroll Up