摘要:
1.Fizzbuzz problem2.Design a data structure for for a 500 word dictionary. What data structure would you use for a searchable dictionary3. Basic data ... 阅读全文
摘要:
1. Epic OA 12/7 submitted, Prob get result by 12/22.2. Yelp 1st phone interview. 15 mins recuriter quick programming, Databasequestions. 1. OS基础知识 2... 阅读全文
摘要:
Basic Tree TraversalDepth First Traversal:1. In order traversal----left, root, right----4,2,5,1,32. Pre order traversal-----root, left, right-----1,2,... 阅读全文
摘要:
Heli tracker. #1,2,3 as Gen Ace Battery. #4,5,6 as Nano Battery11/25/2014 Trex450 #1 Lightly crashed, servo arm brake. Too dark to see heli level.#... 阅读全文
摘要:
ProblemImplement an algorithm to find the kth to last element of a singly linked list.Solution 1 public static ListNode findElement(ListNode head, int... 阅读全文
摘要:
Assume you have a method isSubstring which checks if one word is a substring of another. Given two strings, s1 and s2, write code to check if s2 is ... 阅读全文
摘要:
Write an algorithm such that if an element in an MxN matrix is 0, itsentire rowand column are set to 0. 1 public static void matrixZero(int[][] matrix... 阅读全文
摘要:
Given an image represented by an NxN matrix, where each pixel in the image is4 bytes, write a method to rotate the image by 90 degrees. Can you do thi... 阅读全文
摘要:
ProblemYou are given a grid of numbers. A snake sequence ismade up of adjacent numbers such that for each number,the number on the right or the number... 阅读全文