Leetcode 1431 (Python3)

Prompt:

Given the array candies and the integer extraCandies, where candies[i] represents the number of candies that the ith kid has.

Read More

Leetcode 1672 (Python3)

Prompt:

You are given an m x n integer grid accounts where accounts[i][j] is the amount of money the i’th customer has in the j’th bank. Return the wealth that the richest customer has.

Read More

Leetcode 387 (Python3)

Prompt:

Given a string, find the first non-repeating character in it and return its index. If it doesn’t exist, return -1.

Read More

Enum Notes

Enums in Swift are used to create your own type of value. They can be incredibly useful when used with switch statements.

Read More

Swift Closure Usage

A closure is a function packaged in a block, which can then be passed around such as be assigned to a variable.

Read More

Reworking a Past Project

On the first day, I decided to start on the collection view that will be the products navigator/manual. I will use xib to design the cells I will use in my project. I also keep my project organized using better constants.

Read More