07 2021 档案
摘要:直接敲在文本岂不是更快?反正不给面试的话,一个个还去填表就太累了! 微软AmazonTwitchbloombergvmwarelinkedin高盛zoomwisheBayfb Morgan Stanley Airbnb 字节跳动SnapchatGoogle蓝鸟DoordashSquareRubrik
阅读全文
摘要:REST API是一种架构风格,而 GraphQL 是一种查询语言。GraphQL 服务器可用于多种语言,例如Java、Python不是nosql,Neo4j用的Cypher语言才是 https://www.fullstacktutorials.com/interviews/graphql-inte
阅读全文
摘要:艰苦卓绝的js自学之路和java的区别:可以用于浏览器.reacts是它的前端,Node.js是它的后段HTML在浏览器中以DOM形式表示为树形结构,document对象就是整个DOM树的根节点。 underscore是一个库,会把自身绑定到唯一的全局变量_上,这也是为啥它的名字叫underscor
阅读全文
摘要:狗熊掰玉米法:看一个投一个 小本本记下来诅咒你法:筛选存一阵,然后再投。肯定是这个了。筛多少页?or say筛到多久前的帖子?不用太久的,6月初吧怎么利用之前ng投的经验?都不影响。以前没开/不招/挂了,这次都能重新再投试试。 什么顺序?还是按照自己写的tier来投。 (1)大公司提前Amazon1
阅读全文
摘要:In a binary tree, a lonely node is a node that is the only child of its parent node. The root of the tree is not lonely because it does not have a par
阅读全文
摘要:A binary tree is univalued if every node in the tree has the same value. Return true if and only if the given tree is univalued. Example 1: Input: [1,
阅读全文
摘要:Given the root node of a binary search tree and two integers low and high, return the sum of values of all nodes with a value in the inclusive range [
阅读全文
摘要:Given the root of a binary search tree, rearrange the tree in in-order so that the leftmost node in the tree is now the root of the tree, and every no
阅读全文
摘要:Consider all the leaves of a binary tree, from left to right order, the values of those leaves form a leaf value sequence. For example, in the given t
阅读全文
摘要:You are given the root of a binary search tree (BST) and an integer val. Find the node in the BST that the node's value equals val and return the subt
阅读全文
摘要:Given the root of an n-ary tree, return the preorder traversal of its nodes' values. Nary-Tree input serialization is represented in their level order
阅读全文
摘要:Given a n-ary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest le
阅读全文
摘要:Given the root of a binary tree, return the preorder traversal of its nodes' values. Example 1: Input: root = [1,null,2,3] Output: [1,2,3] Example 2:
阅读全文
摘要:Given the root of a binary tree, determine if it is a valid binary search tree (BST). A valid BST is defined as follows: The left subtree of a node co
阅读全文
摘要:基础的三个模板:traverse, dc, bst 【traverse模板】 题:700. Search in a Binary Search Tree 在bst中返回目标所在的最小子树 class Solution { public TreeNode searchBST(TreeNode root
阅读全文
摘要:Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet
阅读全文
摘要:Given an array where elements are sorted in ascending order, convert it to a height balanced BST. For this problem, a height-balanced binary tree is d
阅读全文
摘要:Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes. Example: Input: 1 \ 3 / 2 O
阅读全文
摘要:tech sells,说话的岗位在费城,用js问了安卓项目, ds web项目api sdk 区别
阅读全文
摘要:[抄题]: Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others
阅读全文
摘要:Given the root of a binary search tree and a target value, return the value in the BST that is closest to the target. Example 1: Input: root = [4,2,5,
阅读全文