Skip to content

Instantly share code, notes, and snippets.

View wzhudev's full-sized avatar
🎯
Focusing

Wenzhao Hu wzhudev

🎯
Focusing
View GitHub Profile

Solutions

Warm-up

Easy

  1. Pick
type MyPick = {
@wzhudev
wzhudev / js-dependency-injection.md
Last active June 15, 2025 00:37
JavaScript dependency injection (DI) libraries
@wzhudev
wzhudev / LeetCode-0001.js
Last active February 9, 2020 08:18
LeetCode Solutions
/**
* @param {number[]} nums
* @param {number} target
* @return {number[]}
*/
var twoSum = function(nums, target) {
/**
* Map number to its position.
*/
const map = {