Jenn | 简


歲月是壹場有去無回的旅行. 好的壞的都是風景

用Overleaf建立个人简历

用Overleaf建立个人简历 关键诉求:意向明确、定位清晰、逻辑顺畅、能够量化 STAR法则:情境(situation)、任务(task)、行动(action)、结果(result) 具体技巧: 添加自我评价 针对岗位进行关键词匹配 使用Overleaf因为它的专业性以及自由编辑程度要...

Past Travels


编程算法 Tree

Full and complete tree: All leaves are at the bottom of the tree and all non-lef nodes have exactly two children. It has 2^n-1 nodes exactly. ...

编程算法 Substring Problem

76. Minimum Window Substring Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexit...

编程算法 Sorting Summary

1. Bubble sort It has to run for n times, each time, it go through all the element and swap the two adjacent elements if their order is wrong. Thu...

面试总结 Facebook Summary

LC13 - Roman to Int: 关键在于如何判断当前该加还是减。 ​ for1 string -> int, for 2: +=sum LC15 - 3 sum 2 pointer + a while loop outsi...

编程思路 Dynamic Programming

Typically applied to optimization problems Steps Characterize the structure of an optimal solution Recursively define the val...

编程思路 Backtracking

46. Permutation Basic structure goes: add helper method called backtrack: if the size is full, add it to res; else, in a for loop add the value ...