@PubSubs_on_sale Nope
Scheduled a pickup order for 3pm. It wasnβt ready at 3 so I told them about my order at 3:15. At 3:30 it still wasnβt ready so I just left π€·π»ββοΈ
Day 26 #100DaysOfCode
looping through an array that's nested inside an array of objects is so much cleaner with a "for of" loop than a regular "for" loops
#100daysofcodechallenge
Day 25 #100DaysOfCode
creating forms today and playing around with the FormData API to construct an object with the information that's inputted in the form
#100daysofcodechallenge
Day 22 #100DaysOfCode
completed "contains duplicate" on #leetcode and was able to refactor my solution from 9 lines of code to just 2 lines. i think it's more readable now too
#100daysofcodechallenge
Day 21 #100DaysOfCode
completed a #leetcode easy "Best Time to Buy and Sell Stock" with a brute force approach. it was accepted, but had a quadratic time complexity. will work on a more optimal/elegant solution tomorrow
#100daysofcodechallenge
Day 17 #100DaysOfCode
read more about dynamic programming in the book "Grokking Algorithms" and learning how dynamic programming is about breaking a problem into similar subproblems and then solving the subproblems from the bottom up
#100daysofcodechallenge
Day 14 #100DaysOfCode
learning about greedy algorithms and how they make for good approximation algorithms and when you should employ one, like if you were to encounter an NP-complete problem
#100daysofcodechallenge