Hello, Here's my solution for the flood fill problem, found on LeetCode. If you want me to write about certain topics please let me know in the comments, thank you! Link to the problem: https://leetcode.com/problems/flood-fill/ """ An image is represented by a 2-D array of integers, each integer representing the pixel value of the image … Continue reading LeetCode: Flood Fill
Programming
Introduction to Pyenv for Linux Users
Hello, In this article I will introduce you to pyenv, a tool for managing python environments. Installing pyenv is pretty straight forward, you'll need to clone the repo and add the binaries to the path. For a typical Debian based distro using the Zsh shell the instructions would be: git clone https://github.com/pyenv/pyenv.git ~/.pyenv echo 'export … Continue reading Introduction to Pyenv for Linux Users
LeetCode: Find The Town Judge
Hello In this article I will present you my Python3 solution for the following problem which I found on LeetCode: find-the-town-judge. Note: The solution is on the second page, so you won't get spoiled if you want to attempt to solve the problem by yourself. Have fun! from collections import defaultdict from typing import List … Continue reading LeetCode: Find The Town Judge
LeetCode: Arrays 101: Inserting Items Into an Array
Hello, Here are my solutions for the second part of the card: Arrays 101, from LeetCode. Duplicate Zeroes Given an array of integers, remove duplicate zeroes and shift the remaining elements. https://leetcode.com/problems/duplicate-zeros/ class Solution: def duplicateZeros(self, arr: List[int]) -> None: """ Do not return anything, modify arr in-place instead. """ index = 0 arr_length = … Continue reading LeetCode: Arrays 101: Inserting Items Into an Array