In today's post, we'll talk about the max() function in Python. We'll also work on a practice question that accepts a list and returns a new list with certain maximum values removed. Here are...
Posts by Jamie
Python Programming Challenge 12: Finding three numbers that sum to zero
In today's post, we'll be working on another challenge from Leetcode: https://leetcode.com/problems/3sum/. For this challenge, we need to write a function called threeSum() that accepts a list and...
In today's post, we'll be coding a Sudoku solver in Python. To complete this project, you need to be familiar with basic programming concepts, such as using two-dimensional arrays, control...
In today's post, we'll look at two different methods to get the value of e (a.k.a. Euler's number) in Python. For our practice question, we'll work on a function for evaluating Mathematical...
In today's post, we'll discuss two different ways to remove an item from a Python dictionary, using the key of the item. For the practice question, we'll work on a function that accepts a...
In today's post, we'll talk about the built-in fabs() function in Python. We'll also discuss the differences between the fabs() and abs() functions. For our practice question, we'll write a...