
careercup
taoqick
这个作者很懒,什么都没留下…
展开
-
LeetCode 843. Guess the Word 题有bug
This problem is aninteractive problemnew to the LeetCode platform.We are given a word list of unique words, each word is 6 letters long, and one word in this list is chosen as secret.You may call master.guess(word)to guess a word. The guessed word ...原创 2020-06-22 12:27:46 · 296 阅读 · 0 评论 -
CareerCup Generate all the possible substrings
Generate all the possible substrings using the characters of a given string. Write code. (The order of chars do not matter, i.e., ac ca) i/p: abc o/p: { a,b,c,ab,ac,bc,abc} --------------转载 2014-03-11 12:57:46 · 598 阅读 · 0 评论 -
CareerCup Fermat point of a traingle
On a 2-D grid, the positions (x,y) of 3 persons are given. Find the meeting point such that sum of distances of each person from meeting point is minimized. Now generalize this to N persons and so转载 2014-03-08 20:00:30 · 713 阅读 · 0 评论 -
CareerCup Given an array A[], find (i, j) such that A[i] < A[j] and (j - i) is maximum.
Given an array A[], find (i, j) such that A[i] --------------------------------------------------------------A Typical two-direction search...MaxDiff(vector arr){ if(arr.size()==0) return转载 2014-03-12 14:21:34 · 682 阅读 · 0 评论 -
CareerCup Insert 0s to maximize A*B
Given 2 arrays A,B, where x(A.length) insert (y - x) 0's to A at various places such that A*B is minimum. For instance, if A = (1, -1) and B = (1,2, 3, 4), then inserting two 0's in the middle of转载 2014-03-13 10:24:09 · 563 阅读 · 0 评论 -
CareerCup Find top k values (asec) which can either be the number from the array A
You are given an array A of k values which contain int values in sorted (asec) order. Find top k values (asec) which can either be the number from the array A, or sum of any two numbers from A or su原创 2014-03-13 17:19:10 · 929 阅读 · 0 评论 -
CareerCup Find out the winning probability given n, m and x
You are given n dices each with heads numbered from 1 to m. You are to throw the n dices and note down the sum of the numbers on each of the n dices. You'll be give a number x and its a win if the s转载 2014-03-13 17:36:23 · 1001 阅读 · 0 评论 -
CareerCup Find the diameter of the tree
Given a tree in the form of parent pointers of every node (for root assume parent pointer to be null), write code to find the diameter of tree.-----------------------------------------------------转载 2014-03-08 18:58:21 · 699 阅读 · 0 评论 -
CareerCup How to find medium of 1 billion numbers across N distributed machines efficiently?
How to find medium of 1 billion numbers across N distributed machines efficiently?----------------------------------------------------------------------------------1)Each machine sorts it's ow转载 2014-03-08 20:21:29 · 833 阅读 · 0 评论 -
CareerCup Find at-least one triplet such that A[n-1] >= A[n] <= A[n+1].
Given a sequence of numbers such that A[0] >= A[1] and A[N-1] >= A[N-2] find at-least one triplet such that A[n-1] >= A[n] <= A[n+1]. Better than linear time is expected.Example: 9 8 5 4 ...原创 2014-03-09 19:50:37 · 650 阅读 · 0 评论 -
CareerCup Given an array of (unsorted) integers, arrange them such that a 小于 b 大于 c 小于 d ... etc.
Given an array of (unsorted) integers, arrange them such that a c e... etc.---------------------------------------------------------------------------------After using a heap, I found O(n) i转载 2014-03-08 20:36:41 · 1112 阅读 · 0 评论 -
CareerCup Given a binary matrix of N X N of integers , you need to return only unique rows of binary
Given a binary matrix of N X N of integers , you need to return only unique rows of binary arrays eg: 0 1 0 0 1 1 0 1 1 0 0 1 0 0 1 1 1 1 0 0 ans: 0 1 0 0 1 1 0 1 1 0 1 1 1 0 0--转载 2014-03-12 12:41:59 · 531 阅读 · 0 评论 -
CareerCup Given preorder traversal array of a BST, recontruct the BST.
Given preorder traversal array of a BST, recontruct the BST.---------------------------------------------------------------I like this solution!!!!!!!!!!This can be solved in O(n) only.转载 2014-03-10 20:34:18 · 738 阅读 · 0 评论 -
CareerCup Liars Merge-Find Set
Liar, Liar As a newbie on a particular internet discussion board, you notice a distinct trend among its veteran members; everyone seems to be either unfailingly honest or compulsively deceptive. Y原创 2014-03-05 20:33:04 · 983 阅读 · 0 评论 -
CareerCup A Ctrl+A Ctrl+C Ctrl+V
1. A 2. Ctrl+A 3. Ctrl+C 4. Ctrl+V If you can only press the keyboard for N times (with the above four keys), please write a program to produce maximum numbers of A. If possible, please al原创 2014-03-11 12:38:08 · 1162 阅读 · 0 评论 -
CareerCup Compute the rearrangement of x that is closest to y but still greater than y
From the set of natural integer numbers Let x = 1234 = {1, 2, 3, 4} Let y = 2410 = {2, 4, 1, 0} Write an algorithm to compute the rearrangement of x that is closest to y but still greater than转载 2014-03-12 20:43:20 · 665 阅读 · 0 评论 -
CareerCup Find if an array is a sequence
Given an int array which might contain duplicates, find if it is a sequence. Eg. {45,50,47,46,49,48} is a sequence 45, 46,47,48,49,50 Sorting is an obvious solution. Can this be done in O(n) t转载 2014-03-12 21:43:53 · 577 阅读 · 0 评论 -
CareerCup Balanced Fermat Point
There is a matrix, m x n. Several groups of people locate at some certain spots. In the following example, there are three groups and the number 4 indicates there are four people in this group. Now转载 2014-03-12 12:38:29 · 617 阅读 · 0 评论 -
CareerCup Implement a stack that pops out the most frequently added item
Implement a stack that pops out the most frequently added item. Stack supports 3 functions - push, pop,and top. Give complexity of each functions in your implementation.---------------------------转载 2014-03-12 09:55:05 · 929 阅读 · 0 评论 -
CareerCup Randomly return a number inside of this range
Give a min and max of an integer array, write a function to randomly return a number inside of this range, but not in the list. Also write a class that contains this function.---------------------转载 2014-03-12 16:59:11 · 760 阅读 · 0 评论 -
CareerCup Write a function that given a position returns the digit in that 0123456789101112131415..
Imagine you have a sequence of the form 0123456789101112131415... where each digit is in a position, for example the digit in the position 5 is 5, in the position 13 is 1, in the position 19 is 4, e转载 2014-03-12 10:36:12 · 766 阅读 · 0 评论 -
CareerCup perform increment operation on ai = ai+1 and decrements operation on aj = aj - 1
Given an array of n elements (a1,a2,..ai,...,an). You are allow to chose any index i and j, such that (i!=j) and allow to perform increment operation on ai = ai+1 and decrements operation on aj = aj转载 2014-03-09 16:09:09 · 1061 阅读 · 0 评论 -
CareerCup Add two number
Two numbers are represented as linked lists. Both lists are of same length. Add them without manipulating the lists and without a second traversal.---------------------------------------------转载 2014-03-13 18:35:58 · 662 阅读 · 0 评论 -
CareerCup Car races 锦标赛问题 败者树 赛马
49 race cars and no two have the same speed. Now give you 7 tracks with equal length to find the 25th fastest car. At least how many races are needed.(no time recorder)------------------------------...转载 2014-03-10 16:21:02 · 1025 阅读 · 0 评论 -
Careercup Facebook Keep the number beautiful...
Initially there is a number n written on board. Two players start playing a game turn by turn. Each player has to replace the number n written on the board by n-2^k (for some k >= 0 such that 2^k转载 2014-06-27 17:07:09 · 674 阅读 · 0 评论 -
CareerCup Facebook Number of sstrings
A string is called sstring if it consists of lowercase english letters and no two of its consecutive characters are the same. You are given string s of length n. Calculate the number of sstrings转载 2014-06-17 16:39:04 · 828 阅读 · 0 评论 -
CareerCup Given a dictionary, how would you add spaces in this string
Let's say you have a phrase without any spaces - eg. "thisisawesome". Given a dictionary, how would you add spaces in this string?----------------------------------------------------------------原创 2014-03-11 14:05:06 · 922 阅读 · 0 评论 -
Balanced Partition
You are given an array, divide it into 2 equal halves such that the sum of those 2 halves are equal. (Imagine that such division is possible for the input array and array size is even)--------------...原创 2014-03-01 23:21:28 · 2201 阅读 · 0 评论 -
CareerCup Facebook Alex moving on a table
Alex is standing on the top left cell (1,1) of a n*m table. The table has n rows and m columns. Initially, he is facing its right cell. He moves on the table in the following way: >He moves one转载 2014-06-21 13:21:58 · 869 阅读 · 0 评论 -
CareerCup Sort an array in a special way
Give you an array which has n integers,it has both positive and negative integers.Now you need sort this array in a special way.After that,the negative integers should in the front,and the positive in转载 2014-01-10 23:29:48 · 1183 阅读 · 0 评论 -
CareerCup Trie Prefix Tree
Return a shortest prefix of <code>word</code> that is <em>not</em> a prefix of any word in the <code>list</code>e.g.word: cat, it has 4 prefixes: “”, “c”, “ca”, “...原创 2014-02-24 20:43:30 · 1197 阅读 · 0 评论 -
CareerCup Brain Teaser
Fill in the blanks:-- -- -- H I K L M N T -- -- -- G J O P Q R S-------------------------------------<span style="color:#333333">Characters in the top ro...转载 2014-03-15 11:04:06 · 892 阅读 · 0 评论 -
CareerCup Find all the conflicting appointments from a given list of n appointments.
You are given 'n' appointments. Each appointment contains startime and endtime. You have to return all conflicting appointments efficiently starttime and endtime can range from a few min to few year原创 2014-03-02 17:25:18 · 1270 阅读 · 0 评论 -
CareerCup After the BIOS performs a successful power-on-self-test, describe everything
During boot, after the BIOS performs a successful power-on-self-test, describe everything that occurs until the console is presented to the user.---------------------------------------------------转载 2014-03-07 19:24:06 · 782 阅读 · 0 评论 -
CareerCup Median of three numbers
Given tree integers a, b,c. Write a function: int median (int a,int b,int c) to get the median number among a,b,c. Can not use sort, the times of integer operations (e.g. compare, + - * /, bit compu转载 2014-03-14 16:16:02 · 781 阅读 · 0 评论 -
CareerCup Old cell-phones game "snake"
Implement in OOP the old cell-phones game "snake". Implement the function "MoveUp". Follow up: how would you reduce space complexity?--------------------------------------------------if it转载 2014-03-10 12:24:09 · 658 阅读 · 0 评论 -
CareerCup How would you implement a secondary sorting
how would you implement a secondary sorting. Meaning sorting by Category A, and then sub sorting by category B?--------------------------------------------------------------------------Three a转载 2014-03-15 00:24:35 · 683 阅读 · 0 评论 -
CareerCup Program an iterator for a Linked List which may include nodes which are nested within othe
Program an iterator for a Linked List which may include nodes which are nested within other nodes. i.e. (1)->(2)->(3(4))->((5)(6). Iterator returns 1->2->3->4->5->6------------------------------转载 2014-03-15 11:23:41 · 1174 阅读 · 0 评论 -
CareerCup Round-robin tournament
You need to organize a football tournament. There are n teams given. You need to prepare a schedule for the matches so that each team plays with every other team and on the same day no team plays tw转载 2014-03-15 10:40:21 · 1117 阅读 · 0 评论 -
CarreerCup Sort Height
You are given two array, first array contain integer which represent heights of persons and second array contain how many persons in front of him are standing who are greater than him in term of heigh转载 2014-01-08 17:11:51 · 1067 阅读 · 0 评论