Full-stack developer and full-time dreamer, based in the San Francisco Bay Area. Click below to learn more!
1// Merge two arrays, and sort them
2
3function merge(nums1, m, nums2, n) {
4 for (let i = m; i < nums1.length; i++) {
5 for (let j = 0; j < n; j++) {
6 if (j === i - m) {
7 nums1[i] = nums2[j];
8 }
9 }
10 }
11
12 nums1.sort((a, b) => {
13 return a - b;
14 });
15};
I'm a full-stack developer with 5 years of experience at all points in the stack. I've worked with a variety of different technologies, some of which are listed below!
Beyond development, I enjoy music, reading, video games, and more. I'm currently pursuing my second bachelor's in Data Science from the Arizona State University (forks up!).
These are some of my favorite projects I've built. The technologies used are listed, and you can check out both the project and the code! More code can always be found on my Github.
An AI-powered imaginary product generator. Having fun with hallucinations.
Music for your flow state. Building a long-thought-about product.
A home for all my side projects. I post projects I've completed and ideas I may not get to.