Posts by Category

Leetcode

Leetcode 402. Remove K Digits

3 minute read

Given string num representing a non-negative integer num, and an integer k, return the smallest possible integer after removing k digits from num.

Leetcode 278. First Bad Version

2 minute read

You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. S...

Leetcode 624. Maximum Distance in Arrays

1 minute read

You are given m arrays, where each array is sorted in ascending order. You can pick up two integers from two different arrays (each array picks one) and cal...

Leetcode 1133. Largest Unique Number

1 minute read

Given an array of integers nums, return the largest integer that only occurs once. If no integer occurs once, return -1. Solving this problem actually requir...

Leetcode 157. Read N Characters Given Read4

2 minute read

For this problem I am given a method that reads 4 characters from a file and I have to implement a method that will read n characters from a file using this ...

Leetcode 191. Number of 1 Bits

1 minute read

So I had the idea of writing about my thought process and solutions to programming problems on sites such as Leetcode and Hackerrank. The goal is to improve ...

Back to Top ↑

Project

General updates

less than 1 minute read

It has been a while since I posted on here. I am still doing leetcode problems in preparation for interviews. I have not put solutions up as I decided to foc...

Finishing documentation and resume updates

less than 1 minute read

Today I will finish the documentation for the flashcard backend https://github.com/bbernal1/flashcard-backend/blob/master/README.md and the frontend https://...

Bug fixes and life update

less than 1 minute read

The resolver and message service are implemented and I now have some bux fixes to do for the delete all cards button and the restore default cards button. Th...

Finishing the resolver

less than 1 minute read

I am still working on adding the resolver for the application. I had to fix a bug yesterday with the card review not showing any cards up for review even tho...

Back to Top ↑

Blog

First Post

less than 1 minute read

Hello, welcome to my github pages blog where I will be posting about my programming journey and any related topics.My webapp for studying japanese with flash...

Back to Top ↑

Resume

Finishing resume

less than 1 minute read

The documentatation for the backend and frontend summaries are finishes in the respective readme.md files. More comprehensive documentation for these project...

Back to Top ↑

Hackerrank

Regex review

less than 1 minute read

I was doing a problem today that required me to extract the number from a URL in javascript. After some research, it seemed Regex was the best way to accompl...

Back to Top ↑