• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:16
CEST 03:16
KST 10:16
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team TLMC #5: Winners Announced!0[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5TL.net Map Contest #21 - Finalists4Team TLMC #5: Vote to Decide Ladder Maps!0
Community News
5.0.15 Patch Balance Hotfix (2025-10-8)16Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition245.0.15 Balance Patch Notes (Live version)118$2,500 WardiTV TL Map Contest Tournament 152
StarCraft 2
General
5.0.15 Patch Balance Hotfix (2025-10-8) 5.0.15 Balance Patch Notes (Live version) The New Patch Killed Mech! Weekly Cups (Sept 29-Oct 5): MaxPax triples up Team TLMC #5: Winners Announced!
Tourneys
Tenacious Turtle Tussle Sea Duckling Open (Global, Bronze-Diamond) $2,500 WardiTV TL Map Contest Tournament 15 RSL Offline Finals Dates + Ticket Sales! Stellar Fest
Strategy
Custom Maps
External Content
Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More Mutation # 491 Night Drive
Brood War
General
Question regarding recent ASL Bisu vs Larva game [BSL21] - How to Qualify to Each League ? ASL20 General Discussion BW General Discussion RepMastered™: replay sharing and analyzer site
Tourneys
[Megathread] Daily Proleagues [ASL20] Ro8 Day 4 Small VOD Thread 2.0 [ASL20] Ro8 Day 3
Strategy
Current Meta TvZ Theorycraft - Improving on State of the Art Proposed Glossary of Strategic Uncertainty 9 hatch vs 10 hatch vs 12 hatch
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread UK Politics Mega-thread The Games Industry And ATVI
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Movie Discussion! Anime Discussion Thread [Manga] One Piece
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
Recent Gifted Posts The Automated Ban List BarCraft in Tokyo Japan for ASL Season5 Final
Blogs
What your "aura" says about…
Peanutsc
Mental Health In Esports: Wo…
TrAiDoS
Try to reverse getting fired …
Garnet
[ASL20] Players bad at pi…
pullarius1
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1228 users

Logic/Programming Interview Questions

Blogs > Oracle
Post a Reply
1 2 3 Next All
Oracle
Profile Blog Joined May 2007
Canada411 Posts
Last Edited: 2011-06-26 19:53:15
June 24 2011 21:43 GMT
#1
So we all know all the big names ask hard questions on interviews so I've made it a hobby to look for the challenging ones and time myself solving them.

Most of the ones on the internet are fairly well known so I'm not going to bother posting any of those. In fact, I'll post precisely those which I found the most challenging, and feel free to share yours.

After each question I will attempt to provide an origination for the question. (I have not interviewed at all these companies, but friends have)

In order of increasing difficulty,

1) Implement an integer Median Priority queue. That is, Peek has O(1) and Insert/Delete Median has O(logn). (Data structures course).

+ Show Spoiler [Hint] +
Too easy for a hint


+ Show Spoiler [Solved] +
http://www.teamliquid.net/blogs/viewblog.php?topic_id=237090&currentpage=2#26


2) Suppose there is a street-race, with a total of k contestants. You start at intersection A, and finish at intersection C. For safety, you want to plan this so that no two contestants can possibly be on the same road together. (Their routes are unique) There are exactly k unique routes from A to B (by unique I mean no roads in any two routes are the same) and exactly k unique routes from B to C. Describe a method to find k unique A-C routes. (Graph theory course)

+ Show Spoiler [Hint] +
Observe that this scenario can be modeled as a undirected unweighted graph, with intersections being vertices, and roads being edges. You want to k pairwise edge-disjoint paths from A to C. Transitivity of Mengers (edge) theorem


3) In OOP, how would you create/modify a class such that it can ONLY be allocated on the heap. That is, allocation onto the stack will error or fail. (Bloomberg)

+ Show Spoiler [Hint] +
No hint or else this would be too easy


+ Show Spoiler [Solved] +
http://www.teamliquid.net/blogs/viewblog.php?topic_id=237090#11


4) Given an array of size n, implement a function which will find the kth largest element in O(n) time and O(1) space. Be careful to note that elements are not necessarily integers, but have the standard comparison operators (ie <=, <) defined, all of which are transitive. (Data structures course)

+ Show Spoiler [Hint] +
Related to median priority queue


5) Given an integer array of size 2n+1 (odd length), where every element exists in pairs except for one unique element, find the unique element in O(n) time and O(1) space. (Google)

+ Show Spoiler [Hint] +
Associativity, Commutativity


+ Show Spoiler [Solved] +
http://www.teamliquid.net/blogs/viewblog.php?topic_id=237090&currentpage=2#22


6) Find the start of a cycle in a C++ linked list in O( n ) where n is the number of nodes, and space complexity O(1). Elements in the array are not necessarily distinct, so searching for the first recurrence of an element does not work. You do not know n. (IBM)

Example of a cycle in a linked list

+ Show Spoiler [Hint] +
Pointers. Make sure your understanding of them is most up-to-date with recent gcc C++ compilers. More specifically, 0xabf points to the same place as 0xabc.


+ Show Spoiler [Additional Hint] +
We know we can use two pointers, lets label them A and B. A simple algorithm which, in every iteration, increments A = A->Next and B=B->Next->Next (with NULL checkers) will eventually yield A=B if there is a loop or B=NULL if there is no loop. This algorithm is trivial, also known as "The turtle and the hare algorithm." Now, try to do this using only ONE pointer


7) Given a standard 52 card deck, you pull out 4 arbitrary cards. Now, you pull out the next card and memorize it before putting it back in the deck. Describe a method to arrange the first four cards in any order on a table so that someone who knows your system will be able to identify the 5th card you pulled. There is only enough space on the table to arrange the cards vertically, side by side. All four cards must be at the table and cannot be re-ordered once set.

Clarification: You may flip cards upside down, but note that the observer will not be able to see what the upside down cards are.

+ Show Spoiler [Hint] +
In mathematical terms, you are to find an onto mapping M: A -> B where A is {a, b, c, d} (the first four cards you pulled) to B = {all 52 cards} \ A. So |B| = 48. Note that rearranging the cards in any order only leaves 4! = 24 permutations. So M may not be one-to-one.


+ Show Spoiler [Solved] +
http://www.teamliquid.net/forum/viewpost.php?post_id=9964122


Horuku
Profile Blog Joined August 2010
United States405 Posts
Last Edited: 2011-06-24 21:56:02
June 24 2011 21:48 GMT
#2
#1. Never heard of a MEDIAN priority-queue and don't feel like googling the difference between it and a regular priority queue. Otherwise, like you said this is also a relatively easy question. The difficulty could be increased based on the underlying data-structure used for the queue (dynamic array, heap, etc.) Then it just comes down to arranging the data-structure each time an element is inserted based on its priority classification so the higher priority gets popped off first.

#2. This is probably a good one to study. CBA to do it at the moment.

#3. I imagine this is answered by saying have a watcher that triggers if data tries to be put on the stack? Not sure in what context it is being refered to, to be honest. Is it talking about the default operating system stack or a custom user built one in an OO language?

#4. This is way to easy for O(n). Just do a linear search comparing each element to each other and storing the current largest in a variable. A better question would be concerning binary search after you ask them what sort method they would use. And give a dataset size, because some sort methods are crappy for small data sets while others are obviously better.

#5. Again, O(n) is too easy. A linear search and you're good to go.

#6. Not sure about the cycle syntax, but based on the hint and how you should build a linked-list in C++ (where each node connects to another node through a pointer to that node), I'd image it is a simple memory search.

#7. CBA for this one either. I'd say in the interview though that I would google the trick to solving this and then implement that trick with an algorithm to do it :D
d<^^>b
Oracle
Profile Blog Joined May 2007
Canada411 Posts
Last Edited: 2011-06-24 22:03:31
June 24 2011 21:49 GMT
#3
#1 A median priority queue is a regular priority queue where priority is given to the median element.

#3 Sounds fine but what exactly is the watcher? Youre skipping the essence of the question.

#4 We want kth largest not max

#5 O(1) space so you cant store elements which have occured

#6 Not so simple actually. A cycle is simply whenever node->next points to an element which you have previously traversed.
jdseemoreglass
Profile Blog Joined July 2010
United States3773 Posts
June 24 2011 21:57 GMT
#4
Hmm... I stopped reading at "Transitivity of Mengers (edge) theorem."

It depresses me to read things like this because I plan on learning programming and suddenly I realize how much of my life I have to spend learning this shit just to be on par with an average programmer.

Meh. Maybe I should just figure out a way to take stupid people's money and get rich. Like offering people enlightenment and then charging them for copy-pasted sections of the Tao Te Ching.
"If you want this forum to be full of half-baked philosophy discussions between pompous faggots like yourself forever, stay the course captain vanilla" - FakeSteve[TPR], 2006
Horuku
Profile Blog Joined August 2010
United States405 Posts
June 24 2011 21:57 GMT
#5
On June 25 2011 06:49 Oracle wrote:
Show nested quote +
On June 25 2011 06:48 Horuku wrote:
#4 is way to easy for O(n). Just do a linear search comparing each element to each other and storing the current largest in a variable. A better question would be concerning binary search after you ask them what sort method they would use. And give a dataset size, because some sort methods are crappy for small data sets while others are obviously better.


Sorry, youre right, i forgot to add that you have O( 1 ) space complexity.
but also, your solution finds the largest, not the kth largest.


Well still, for kth largest then you would just sort the array and then choose the element [k-1] lol
d<^^>b
Oracle
Profile Blog Joined May 2007
Canada411 Posts
June 24 2011 22:02 GMT
#6
On June 25 2011 06:57 Horuku wrote:
Show nested quote +
On June 25 2011 06:49 Oracle wrote:
On June 25 2011 06:48 Horuku wrote:
#4 is way to easy for O(n). Just do a linear search comparing each element to each other and storing the current largest in a variable. A better question would be concerning binary search after you ask them what sort method they would use. And give a dataset size, because some sort methods are crappy for small data sets while others are obviously better.


Sorry, youre right, i forgot to add that you have O( 1 ) space complexity.
but also, your solution finds the largest, not the kth largest.


Well still, for kth largest then you would just sort the array and then choose the element [k-1] lol


Comparison based sort is lower bound nlogn
Radix/Counting sort are O(k) where k is the largest element in the array. But those work for integers (or some equivalent hashing function). Still if k > n then this doesn't work. In this problem you are not allowed to assume n <= k.
Siniyas
Profile Joined January 2011
Germany66 Posts
Last Edited: 2011-06-24 22:38:10
June 24 2011 22:35 GMT
#7
For the cycle

If the list is n elements long, isnt the n+1 element always the start of the cycle?


For the cards thing.
We could just have an order for the cards,that card a is bigger than b
depending on the value ex. K>Q and also for the suits if cards are double.
We start with cards 1>2>3>4, for the first highest remaining card in the deck.
then change 3 and 4 then go 1 further and change 2 and 4, 3 and 4 and then 3 and 4 again and so on and so on.
Also if we can leave an empty space we get enough permutations, so that we can distinctly map each element.


for 4

We can just copy the array and run through it k times, picking out the biggest element and deleting it from the array.


For 2.

I dont see the difficulty here. First route from A to B goes with first route from B to C or any other as long as we dont use the chosen routes after that.


Let it rip
Oracle
Profile Blog Joined May 2007
Canada411 Posts
Last Edited: 2011-06-24 22:55:26
June 24 2011 22:46 GMT
#8
On June 25 2011 07:35 Siniyas wrote:
For the cycle

If the list is n elements long, isnt the n+1 element always the start of the cycle?


For the cards thing.
We could just have an order for the cards,that card a is bigger than b
depending on the value ex. K>Q and also for the suits if cards are double.
We start with cards 1>2>3>4, for the first highest remaining card in the deck.
then change 3 and 4 then go 1 further and change 2 and 4, 3 and 4 and then 3 and 4 again and so on and so on.
Also if we can leave an empty space we get enough permutations, so that we can distinctly map each element.


for 4

We can just copy the array and run through it k times, picking out the biggest element and deleting it from the array.


For 2.

I dont see the difficulty here. First route from A to B goes with first route from B to C or any other as long as we dont use the chosen routes after that.





Clarification for the cycle, it doesnt have to loop back to the beginning. The cycle can contain only a subset of the elements. So the first portion doesnt have to be contained in the cycle.

And you do not know the value of 'n', sorry i should have explicitly said that.

#7 You cant re-order the cards multiple times. Pick a configuration, set it on the table, and someone should know which card you are mapping to. Empty spaces aren't allowed, sorry forgot to mention. You must use all 4 cards.

#4 That is O(kn) and not O(n)

#2 What if the routes from B to C are not pairwise edge disjoint from the A to B paths? That is, routes frmo B to C intersect some roads which are part of routes from A to B.
Siniyas
Profile Joined January 2011
Germany66 Posts
June 24 2011 23:01 GMT
#9
On June 25 2011 07:46 Oracle wrote:
Show nested quote +
On June 25 2011 07:35 Siniyas wrote:
For the cycle

If the list is n elements long, isnt the n+1 element always the start of the cycle?


For the cards thing.
We could just have an order for the cards,that card a is bigger than b
depending on the value ex. K>Q and also for the suits if cards are double.
We start with cards 1>2>3>4, for the first highest remaining card in the deck.
then change 3 and 4 then go 1 further and change 2 and 4, 3 and 4 and then 3 and 4 again and so on and so on.
Also if we can leave an empty space we get enough permutations, so that we can distinctly map each element.


for 4

We can just copy the array and run through it k times, picking out the biggest element and deleting it from the array.


For 2.

I dont see the difficulty here. First route from A to B goes with first route from B to C or any other as long as we dont use the chosen routes after that.





For the cycle, it doesnt have to loop back to the beginning. The cycle can contain only a subset of the elements. So the first portion doesnt have to be contained in the cycle.

#7 You cant re-order the cards multiple times. Pick a configuration, set it on the table, and someone should know which card you are mapping to.

#4 That is O(kn) and not O(n)

#2 What if the routes from B to C are not pairwise edge disjoint from the A to B paths? That is, routes frmo B to C intersect some roads which are part of routes from A to B.


It doesnt matter if the cycle loops back to the beginning or any other element.
But to loop back we need to have gone through all n elements of the list once.
Example.
A->B->C->D->B
4 elements 5 element is the start of the cycle.

7
Dont understand your point exactly. Do we need to to pick a fixed ordering for the 4 cards based on certain characteristics that never change?
Doesnt really make sense to me. If we cant change the order of the cards in accordance to the 5 card that we drew, than it would be totally random. Unless the scheme that the 4 cards are ordered buy have conditions in it that pertain to the 5 card. Is that what you mean?

4
Okay usually constants are not factored into O Notation, but if you want it exactly n or less, then i will think about it again.

2
If thats the case, is there even a garantuee that we can find k A to C paths that dont cross?

Let it rip
Oracle
Profile Blog Joined May 2007
Canada411 Posts
Last Edited: 2011-06-24 23:17:15
June 24 2011 23:07 GMT
#10
On June 25 2011 08:01 Siniyas wrote:
Show nested quote +
On June 25 2011 07:46 Oracle wrote:
On June 25 2011 07:35 Siniyas wrote:
For the cycle

If the list is n elements long, isnt the n+1 element always the start of the cycle?


For the cards thing.
We could just have an order for the cards,that card a is bigger than b
depending on the value ex. K>Q and also for the suits if cards are double.
We start with cards 1>2>3>4, for the first highest remaining card in the deck.
then change 3 and 4 then go 1 further and change 2 and 4, 3 and 4 and then 3 and 4 again and so on and so on.
Also if we can leave an empty space we get enough permutations, so that we can distinctly map each element.


for 4

We can just copy the array and run through it k times, picking out the biggest element and deleting it from the array.


For 2.

I dont see the difficulty here. First route from A to B goes with first route from B to C or any other as long as we dont use the chosen routes after that.





For the cycle, it doesnt have to loop back to the beginning. The cycle can contain only a subset of the elements. So the first portion doesnt have to be contained in the cycle.

#7 You cant re-order the cards multiple times. Pick a configuration, set it on the table, and someone should know which card you are mapping to.

#4 That is O(kn) and not O(n)

#2 What if the routes from B to C are not pairwise edge disjoint from the A to B paths? That is, routes frmo B to C intersect some roads which are part of routes from A to B.


It doesnt matter if the cycle loops back to the beginning or any other element.
But to loop back we need to have gone through all n elements of the list once.
Example.
A->B->C->D->B
4 elements 5 element is the start of the cycle.

7
Dont understand your point exactly. Do we need to to pick a fixed ordering for the 4 cards based on certain characteristics that never change?
Doesnt really make sense to me. If we cant change the order of the cards in accordance to the 5 card that we drew, than it would be totally random. Unless the scheme that the 4 cards are ordered buy have conditions in it that pertain to the 5 card. Is that what you mean?

4
Okay usually constants are not factored into O Notation, but if you want it exactly n or less, then i will think about it again.

2
If thats the case, is there even a garantuee that we can find k A to C paths that dont cross?



I misunderstood some of your points so I edited my explanation, see above.

#7 You can assign a "value" to each of the four cards you drew. (ie a=1, b=2, c=3, d=4) But your scheme doesn't work if we do not allow the empty space. (Its close though, i definitely tried that) The fifth card (and also first four) are completely arbitrary and unrelated.

#4 k is not a constant (it is in terms of n). k is chosen by the algorithm. Of course k<=n, but k changes based on what value we choose. For example, if we want k= n-1, then we have to do n*(n-1) loops! thats definitely not linear.

#2 There sure is (Q3)
HowitZer
Profile Joined February 2003
United States1610 Posts
June 24 2011 23:22 GMT
#11
3.)

class HeapOnly
{
private:
HeapOnly(){}

public:
static HeapOnly* Allocate() { return new HeapOnly(); }
};

int main()
{
HeapOnly p; // error

HeapOnly * p = HeapOnly::Allocate(); // ok

return 0;
}
Human teleportation, molecular decimation, breakdown and reformation is inherently purging. It makes a man acute.
Oracle
Profile Blog Joined May 2007
Canada411 Posts
June 24 2011 23:26 GMT
#12
On June 25 2011 08:22 HowitZer wrote:
3.)

class HeapOnly
{
private:
HeapOnly(){}

public:
static HeapOnly* Allocate() { return new HeapOnly(); }
};

int main()
{
HeapOnly p; // error

HeapOnly * p = HeapOnly::Allocate(); // ok

return 0;
}


That works. Of course there are many ways to implement it, but the gist is to make the constructor private (hence no stack allocation) and a public function (or friend to constructor or w.e) which returns a heap pointer.
Siniyas
Profile Joined January 2011
Germany66 Posts
Last Edited: 2011-06-24 23:30:45
June 24 2011 23:29 GMT
#13
Oh for 3. Only make a private constructor and have a static method that gives back a pointer to an object on the heap?

Edit: Meh. Just saw it was already posted.
Let it rip
Oracle
Profile Blog Joined May 2007
Canada411 Posts
June 24 2011 23:34 GMT
#14
Ive added an additional hint to Q6
aphorism
Profile Joined February 2011
United States226 Posts
Last Edited: 2011-06-24 23:50:13
June 24 2011 23:47 GMT
#15
On June 25 2011 06:43 Oracle wrote:
7) Given a standard 52 card deck, you pull out 4 arbitrary cards. Now, you pull out the next card and memorize it before putting it back in the deck. Describe a method to arrange the first four cards in any order on a table so that someone who knows your system will be able to identify the 5th card you pulled. There is only enough space on the table to arrange the cards vertically, side by side. All four cards must be at the table and cannot be re-ordered at any time.

+ Show Spoiler [Hint] +
In mathematical terms, you are to find an onto mapping M: A -> B where A is {a, b, c, d} (the first four cards you pulled) to B = {all 52 cards} \ A. So |B| = 48. Note that rearranging the cards in any order only leaves 4! = 24 permutations. So M may not be one-to-one.


So for this question, is our friend only allowed to observe the cards? I have ideas for an encoding that places cards face up/down, but I'm not sure if our observer is allowed to flip them face-up or not.
Oracle
Profile Blog Joined May 2007
Canada411 Posts
Last Edited: 2011-06-24 23:57:27
June 24 2011 23:54 GMT
#16
Yes the friend is only allowed to observe the cards. Face up/face down is fine, but note that your friend cannot know which card is which if there is more than one upside down card. So essentially, just think you can only label the face side with an 'a', 'b', 'c', or 'd'.

You're on the right track though. This isnt really an interview question, but a question a friend gave to me at lunch once. He said he didnt know the solution, and he heard it months back.

I encourage you to really think about it and then post, to ensure youre not missing any cases.
aphorism
Profile Joined February 2011
United States226 Posts
Last Edited: 2011-06-25 00:25:47
June 25 2011 00:24 GMT
#17
Here's a sketch of a solution to 7, I hope it works...

First, let's define an 'order' for cards of each color: Hearts < Diamonds < Spades < Clubs. This plus numerical order gives a mapping of cards of each color to the integers 1-26 by value, and it also gives us a strictly less-than operator for cards, so the lowest card can be called A, the next lowest can be called B, etc.

In your 4 cards, you will have either a majority color, or 2 red & 2 black cards. In this case, you will leave all cards face up, and use the 24 permutations of the face-up cards to correspond to 1-24, which correspond to the (at most 24) cards of the majority color (use red as the majority in the case of a 2/2 split). Our friend knows which cards in the majority color to leave out of the sorted list (because they're face-up on the table), so he can just map permutations (by lexicographic order or something) to the correct card.

For the remaining 24-26 cards, we turn some cards face-down (at most 2, so we never turn down a card in the minority color), and map the permutations of the face-up cards to cards in the minority color as follows (F = face-down card):

F A B C = 6 permutations of A, B, and C
A F B C = 6 more.
A B F C = 6 more
A B C F = 6 more
F F A B = 2 more, for 26 total permutations.

We turn at most 2 face-down, so we always leave our minority color cards face-up, and again our friend knows which ones to leave out of the sorted list.

Here's an example, because it's kinda sketchy just explaining it...


Let's say I pull the following 4 cards:
Ace of Hearts
Seven of Spades
Ten of Spades
Six of Diamonds.

In order, they are
Ace of Hearts = A
Six of Diamonds = B
Seven of Spades = C
Ten of Spades = D

Let's say the 5th card is the King of Spades.

It's in our minority color, and it's the 11th card out of 24, because we don't count the seven/ten of spades.

We thus give it the following mapping, where F is D, face-down.:
C F A B.

Our friend sees the 11th permutation for the minority color, and also sees the seven/ten of spades, so he knows to skip those. The 11th smallest black card, not counting the seven/ten of spades, is the King of Spades.


Let's say the fifth card is the Ace of Diamonds instead. Not counting the 4 cards we have on the table, it's the 13th smallest red card. We thus put down the 13th red permutation, CABD (all face up). Our friend sees the 13th permutation, and all cards face up, so he counts up to the 13th smallest red card, skipping the Ace of Hearts, because it's already on the table. This gives the Ace of Diamonds.


That post was far longer than I expected it would be, so much for a solution sketch...
Anyway, feel free to point out any terrible flaws in my system, I think works okay.
Oracle
Profile Blog Joined May 2007
Canada411 Posts
June 25 2011 00:32 GMT
#18
I didnt read the example, and as soon as you mentioned "majority element" I knew what was going to come next. Looks right, and its completely different from my solution.

Here's mine:

We think of a card as a {0,1}-bit. A card represents 0 if it is face up and 1 if it is face-down.

So then we get a binary string of length four. So we can represent 2^4 - 1 = 15 possibly values with a string of 4 bits. But there are really only 13 distinct values. Hence we will never get the string 1111. So we will always have a face-up card.

So we assign 'a' = Hearts, 'b' = Diamonds, 'c' = Spades, 'd' = Clubs. The card which is face-up and leftmost denotes the suit.


So for example A F F F can be read as 0111 = 7. The A says its the 7 of Hearts.
FBDF can be read as 1001 = 9. The B says its the 9 of Diamonds.
ptell
Profile Joined October 2009
United States103 Posts
June 25 2011 00:33 GMT
#19
Solution to 7) :

First note that every card can be mapped to a number in the range of 1 to 52. Using the convention in bridge, the map is (from smallest to highest):

01 <--> Ace of Spades
02 <--> Ace of Hearts
03 <--> Ace of Diamonds
04 <--> Ace of Clubs
05 <--> Deuce of Spades
.
.
.
51 <--> King of Diamonds
52 <--> King of Clubs

Then the first four cards corresponds to a set of four number, e.g. {04, 13, 17, 31}. Then reindex the remaining 48 cards so that it starts from 01 and ends at 48.

Now there are 4! = 24 ways to arrange four distinct cards so we can map to indices 01 to 24. Next to represent the indices 25 to 48, flip the card with the smallest value.
Oracle
Profile Blog Joined May 2007
Canada411 Posts
June 25 2011 00:45 GMT
#20
On June 25 2011 09:33 ptell wrote:
Solution to 7) :

First note that every card can be mapped to a number in the range of 1 to 52. Using the convention in bridge, the map is (from smallest to highest):

01 <--> Ace of Spades
02 <--> Ace of Hearts
03 <--> Ace of Diamonds
04 <--> Ace of Clubs
05 <--> Deuce of Spades
.
.
.
51 <--> King of Diamonds
52 <--> King of Clubs

Then the first four cards corresponds to a set of four number, e.g. {04, 13, 17, 31}. Then reindex the remaining 48 cards so that it starts from 01 and ends at 48.

Now there are 4! = 24 ways to arrange four distinct cards so we can map to indices 01 to 24. Next to represent the indices 25 to 48, flip the card with the smallest value.

Yup, can't find a problem with it. I came across this solution too but didn't like it because most likely the observer would need a coding grammar to lookup which permutation refers to which.
1 2 3 Next All
Please log in or register to reply.
Live Events Refresh
Tenacious Turtle Tussle
23:00
Biweekly #33
CranKy Ducklings121
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SpeCial 151
Nathanias 107
RuFF_SC2 92
CosmosSc2 85
StarCraft: Brood War
Artosis 797
NaDa 27
Dota 2
monkeys_forever430
Counter-Strike
fl0m1824
Other Games
summit1g9373
shahzam766
C9.Mang0286
Maynarde259
ViBE209
UpATreeSC48
JuggernautJason7
Organizations
Other Games
gamesdonequick1041
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 11 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift4391
Upcoming Events
The PondCast
8h 45m
Map Test Tournament
9h 45m
OSC
14h 45m
SKillous vs Krystianer
GgMaChine vs Demi
ArT vs Creator
INexorable vs TBD
ReBellioN vs TriGGeR
UedSoldier vs Iba
sOs vs Moja
Map Test Tournament
1d 9h
OSC
1d 11h
Korean StarCraft League
2 days
CranKy Ducklings
2 days
Map Test Tournament
2 days
OSC
2 days
[BSL 2025] Weekly
2 days
[ Show More ]
Safe House 2
2 days
Sparkling Tuna Cup
3 days
Map Test Tournament
3 days
OSC
3 days
IPSL
3 days
Bonyth vs Art_Of_Turtle
Razz vs rasowy
Liquipedia Results

Completed

Acropolis #4 - TS2
Maestros of the Game
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
WardiTV TLMC #15
EC S1
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.