Skip to content

Instantly share code, notes, and snippets.

View wzhudev's full-sized avatar
🎯
Focusing

Wenzhao Hu wzhudev

🎯
Focusing
View GitHub Profile
{"name":"wzhudev","settings":"{\"settings\":\"{\\n // #region editor\\n \\\"editor.guides.indentation\\\": true,\\n \\\"editor.accessibilitySupport\\\": \\\"off\\\",\\n \\\"editor.bracketPairColorization.enabled\\\": false,\\n \\\"breadcrumbs.icons\\\": false,\\n \\\"editor.renderControlCharacters\\\": true,\\n \\\"editor.renderWhitespace\\\": \\\"all\\\",\\n \\\"editor.minimap.enabled\\\": false,\\n \\\"editor.rulers\\\": [120],\\n \\\"editor.guides.bracketPairs\\\": false,\\n \\\"editor.guides.highlightActiveBracketPair\\\": false,\\n \\\"workbench.tree.renderIndentGuides\\\": \\\"always\\\",\\n \\\"editor.fontSize\\\": 15,\\n \\\"editor.fontFamily\\\": \\\"Monaspace Neon, Consolas, monospace\\\",\\n \\\"search.followSymlinks\\\": false,\\n \\\"search.useIgnoreFiles\\\": false,\\n \\\"search.useGlobalIgnoreFiles\\\": false,\\n \\\"files.eol\\\": \\\"\\\\n\\\",\\n \\\"window.titleBarStyle\\\": \\\"custom\\\",\\n \\\"files.associations\\\": {\\n \\\"*.mdx\\\": \\\"markdown\\\",\\n \\
@wzhudev
wzhudev / collaborative-doc-editors.md
Last active September 23, 2021 05:30
Collaborative doc editors

Solutions

Warm-up

Easy

  1. Pick
type MyPick = {
@wzhudev
wzhudev / js-dependency-injection.md
Last active November 14, 2024 01:15
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 = {