• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 12:05
CEST 18:05
KST 01:05
  • 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!3[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)60Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition275.0.15 Balance Patch Notes (Live version)119$2,500 WardiTV TL Map Contest Tournament 154
StarCraft 2
General
5.0.15 Patch Balance Hotfix (2025-10-8) PartinG joins SteamerZone, returns to SC2 competition Geoff 'iNcontroL' Robinson has passed away Classic Games #3: Rogue vs Serral at BlizzCon Team TLMC #5: Winners Announced!
Tourneys
SC2's Safe House 2 - October 18 & 19 RSL Offline Finals Dates + Ticket Sales! SC4ALL $6,000 Open LAN in Philadelphia Sparkling Tuna Cup - Weekly Open Tournament $2,500 WardiTV TL Map Contest Tournament 15
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
BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ I'm making videos again Question regarding recent ASL Bisu vs Larva game Whose hotkey signature is this?
Tourneys
[Megathread] Daily Proleagues [ASL20] Ro8 Day 4 Small VOD Thread 2.0 [ASL20] Ro8 Day 3
Strategy
Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art Current Meta Proposed Glossary of Strategic Uncertainty
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
The Games Industry And ATVI US Politics Mega-thread Stop the Construction YouTube Thread Things Aren’t Peaceful in Palestine
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
Formula 1 Discussion 2024 - 2026 Football Thread 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
The Automated Ban List Recent Gifted Posts
Blogs
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1354 users

Microsoft Interview - I _had_ one! - Page 3

Blogs > CecilSunkure
Post a Reply
Prev 1 2 3 4 Next All
Pseudoku
Profile Joined March 2011
Canada1279 Posts
March 15 2013 04:25 GMT
#41
Also, I don't be surprised that you were interviewed by a project manager. It is definitely possible they were once the head software developer for a project and just got promoted.
Logic fails because we are lazy.
Cambium
Profile Blog Joined June 2004
United States16368 Posts
March 15 2013 07:51 GMT
#42
Just to clear something up here:

I'm almost 100% certain that the guy is a program manager (rather than a project manager). Program manager, SDE and SDET are the three legs holding up the development tripod for Microsoft, and they claim that you can move roles very easily between them. I applied as a PM, but was told to interview as an SDET, and was offered a job as an SDE because they said it was a better fit.

PMs are definitely a lot less technical than the other two despite what Msft may tell you, but they can definitely hold a conversation with a technical person (which is their role).
When you want something, all the universe conspires in helping you to achieve it.
Cambium
Profile Blog Joined June 2004
United States16368 Posts
Last Edited: 2013-03-15 08:21:53
March 15 2013 08:04 GMT
#43
On March 15 2013 13:23 Pseudoku wrote:
Show nested quote +
On March 14 2013 23:32 spinesheath wrote:
On March 14 2013 19:49 fonger wrote:
On March 13 2013 15:04 CecilSunkure wrote:
I: So next question. You have an array of 17 integers, and each slot's value is it's indexed position. However one index is a duplicate. How do you find what the duplicate is?
Me: N^2 search with a boolean. A faster way would be to add each index's value up and subtract from the expected sum.
I: Okay good. What would you do if the array was very large and overflow would occur?
Me: Integer overflow?
I: Yes.
Me: Can I use an external data structure?
I: Sure.
Me: I could use an external data structure to handle insertions and respond when a duplicate entry is found, such as a modified version of a hash table.
Me: Another solution would be to use multiple integers to emulate a larger data range. In CS 100 we had to add two 16 bit integers with 8 bit values, and I could do the same thing here.
I: We're out of time!

Hey with this one can you clarify what the problem is? Is it something along the lines of:

[0][1][2][3][4][5][6][7][8][3][10][11][12][13][14][15][16]

Where 3 is duplicated, or are the numbers allowed to be larger than the array length?

Actually I've been wondering about this too. I would imagine an array like your example. In which case a binary search doesn't seem to accomplish anything since you have no way to decide in which half the odd value is.

I would imagine the interviewee is supposed to say "iterate over the array and check a[i] == i". Then the interviewer asks about the overflow, and the answer is supposed to be "check if a[0] == 0, then check whether a[i+1] - a[i] == 1 holds true". Or something like that, I haven't actually thought it through for the overflow, I just have a hunch that it would work :p


Yeah, based on how he worded the question, I think a[i] = i (except for the duplicate), so just one pass is needed (O(n))?


That's probably too simple.

I'd imagine it's something like you have numbers 1 to n randomly distributed in an array of size (n+2). Two of which are dupes, find out what they are...

Now, this would be an interesting question because the typical response would be:

1. O(n^2) runtime: two loops
2. O(n) memory: hash map
3. O(n log n): sort then traverse

Then I would guess the interviwer would lead the interviewee towards an O(n) runtime solution without extra space:
+ Show Spoiler +

think about it


It's a big possibility that the interviewer screwed it up
When you want something, all the universe conspires in helping you to achieve it.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2013-03-15 08:31:00
March 15 2013 08:29 GMT
#44
But "each slot's value is it's indexed position" strongly hints at a non-random relation between the value and its position... He would have messed up quite hard then. Unless of course he messed up a bit and then Cecil messed up some more while rephrasing it.

Also does your version lead to any problems with overflows as they came up in the follow-up question?
+ Show Spoiler [my idea for Cambium's version] +
Actually, my idea would be to abuse the sign bit assuming we have signed integers (marking the array index for which we already found the corresponding value), and that obviously wouldn't work if we already have negative values due to overflow... But thanks to the value 0 that would be quite the hack, involving actual bit manipulation.
Also: hilariously bad cache usage in the case of a very large array.
If you have a good reason to disagree with the above, please tell me. Thank you.
Cambium
Profile Blog Joined June 2004
United States16368 Posts
March 15 2013 08:32 GMT
#45
On March 15 2013 17:29 spinesheath wrote:
But "each slot's value is it's indexed position" strongly hints at a non-random relation between the value and its position... He would have messed up quite hard then. Unless of course he messed up a bit and then Cecil messed up some more while rephrasing it.

Also does your version lead to any problems with overflows as they came up in the follow-up question?
+ Show Spoiler [my idea for Cambium's version] +
Actually, my idea would be to abuse the sign bit assuming we have signed integers (marking the array index for which we already found the corresponding value), and that obviously wouldn't work if we already have negative values due to overflow... But thanks to the value 0 that would be quite the hack, involving actual bit manipulation.
Also: hilariously bad cache usage in the case of a very large array.

nice
When you want something, all the universe conspires in helping you to achieve it.
fonger
Profile Blog Joined March 2006
United Kingdom1218 Posts
Last Edited: 2013-03-15 23:42:47
March 15 2013 11:54 GMT
#46
On March 15 2013 17:04 Cambium wrote:
Show nested quote +
On March 15 2013 13:23 Pseudoku wrote:
On March 14 2013 23:32 spinesheath wrote:
On March 14 2013 19:49 fonger wrote:
On March 13 2013 15:04 CecilSunkure wrote:
I: So next question. You have an array of 17 integers, and each slot's value is it's indexed position. However one index is a duplicate. How do you find what the duplicate is?
Me: N^2 search with a boolean. A faster way would be to add each index's value up and subtract from the expected sum.
I: Okay good. What would you do if the array was very large and overflow would occur?
Me: Integer overflow?
I: Yes.
Me: Can I use an external data structure?
I: Sure.
Me: I could use an external data structure to handle insertions and respond when a duplicate entry is found, such as a modified version of a hash table.
Me: Another solution would be to use multiple integers to emulate a larger data range. In CS 100 we had to add two 16 bit integers with 8 bit values, and I could do the same thing here.
I: We're out of time!

Hey with this one can you clarify what the problem is? Is it something along the lines of:

[0][1][2][3][4][5][6][7][8][3][10][11][12][13][14][15][16]

Where 3 is duplicated, or are the numbers allowed to be larger than the array length?

Actually I've been wondering about this too. I would imagine an array like your example. In which case a binary search doesn't seem to accomplish anything since you have no way to decide in which half the odd value is.

I would imagine the interviewee is supposed to say "iterate over the array and check a[i] == i". Then the interviewer asks about the overflow, and the answer is supposed to be "check if a[0] == 0, then check whether a[i+1] - a[i] == 1 holds true". Or something like that, I haven't actually thought it through for the overflow, I just have a hunch that it would work :p


Yeah, based on how he worded the question, I think a[i] = i (except for the duplicate), so just one pass is needed (O(n))?


That's probably too simple.

I'd imagine it's something like you have numbers 1 to n randomly distributed in an array of size (n+2). Two of which are dupes, find out what they are...

Now, this would be an interesting question because the typical response would be:

1. O(n^2) runtime: two loops
2. O(n) memory: hash map
3. O(n log n): sort then traverse

Then I would guess the interviwer would lead the interviewee towards an O(n) runtime solution without extra space:
+ Show Spoiler +

think about it


It's a big possibility that the interviewer screwed it up

Cleaned up per below:
+ Show Spoiler +

I think this is O(n):

int findDuplicate(int * v, int n) {
int next = n;
int * c = v + next;

while (*c != *(v + *c)) {
next = *c;
*c = c - v;
c = v + next;
}

return *c;
}

Example:
+ Show Spoiler +


[5][7][9][1][6][2][0][4][8][6][3]
[5][7][9][3][6][2][0][4][8][6][3]
[5][1][9][3][6][2][0][4][8][6][3]
[5][1][9][3][6][2][0][7][8][6][3]
[5][1][9][3][4][2][0][7][8][6][3]
[5][1][9][3][4][2][6][7][8][6][3]
[0][1][9][3][4][2][6][7][8][6][3]
[0][1][9][3][4][5][6][7][8][6][3]
[0][1][2][3][4][5][6][7][8][6][3]
[0][1][2][3][4][5][6][7][8][9][3]
[0][1][2][3][4][5][6][7][8][9][3] --- found duplicate = 6


spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2013-03-15 12:39:10
March 15 2013 12:37 GMT
#47
This is something you should prove rather than test.
Since you basically do a[k] = k once per iteration, and terminate if you ever come across a slot where a[k] == k, it should be O(n). Whether it is correct is a different story though...

You cleverly avoided the issue of starting at a slot where a[k] == k already because the array is 1 larger than the largest value in the array, so I don't see a reason why it wouldn't be correct. It probably is correct.

Also: use the "code" BB tag.
If you have a good reason to disagree with the above, please tell me. Thank you.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
March 15 2013 19:35 GMT
#48
I believe he said they were in randomized order.
Glenn313
Profile Joined August 2011
United States475 Posts
March 15 2013 20:03 GMT
#49
Awesome. Good luck in your search for work!
Hey man
Alryk
Profile Blog Joined November 2011
United States2718 Posts
March 15 2013 20:37 GMT
#50
Just as a point, I had an interview with Microsoft last week and it actually went like exactly like this O.o
Team Liquid, IM, ViOlet!
tuho12345
Profile Blog Joined July 2011
4482 Posts
March 16 2013 00:12 GMT
#51
cool read, very helpful for my future interview. And also don't feel bad about it, you can either be a small fish in a big tank, or a big fish in a small tank. Finding smaller and upcoming company will gain you lots of experience as well.
Snipinpanda
Profile Blog Joined October 2007
United States1227 Posts
March 16 2013 02:04 GMT
#52
I don't particularly see why integer overflow matters. The difference should still be the correct answer.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2013-03-16 04:30:48
March 16 2013 03:08 GMT
#53
On March 16 2013 11:04 Snipinpanda wrote:
I don't particularly see why integer overflow matters. The difference should still be the correct answer.

It won't be.

For instance say our range is 7 to -7 for an integer.

[0][1][1][3][4][5][6]

We have a missing 2. To find it in decimal we do: (1 + 2 + 3 + 4 + 5 + 6) - (1 + 1 + 3 + 4 + 5 + 6), which is 2. Converting the numbers we have into binary gives:

0001 +
0001 +
0011 +
0100 +
0101 +
0110 +
0111 =
1100 which when you do 2's compliment: -0011 or -3. Our expected total also overflows, which gives us:

0001 +
0010 +
0011 +
0100 +
0101 +
0110 =
0101 which is 5. 5 minus -3 is 8, which overflows to 0.

This is assuming I did the arithmetic correctly.
Snipinpanda
Profile Blog Joined October 2007
United States1227 Posts
Last Edited: 2013-03-16 05:13:30
March 16 2013 05:13 GMT
#54
It's 7 to -8.

You seem to be doing (1+1+3+4+5+6+7) in your first calculations.
Even so your calculations aren't quite correct.

1 + 1 + 3 + 4 + 5 + 6 = 20 = 0b10100

Since you ignore the highest bit(it over flowed), it's 0100 which is one less than the total you had for your other calculation.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 16 2013 07:07 GMT
#55
But then what if you have an array larger than max int? Possibly even max unsigned int? :p
If you have a good reason to disagree with the above, please tell me. Thank you.
Snipinpanda
Profile Blog Joined October 2007
United States1227 Posts
March 16 2013 08:06 GMT
#56
On March 16 2013 16:07 spinesheath wrote:
But then what if you have an array larger than max int? Possibly even max unsigned int? :p


Then you are violating the premise that the array will only have one duplicate past max int+1
GeorgeyBeats
Profile Joined April 2011
United Kingdom338 Posts
March 16 2013 08:36 GMT
#57
Hi Cecil, I believe I commented on your first blog when you wrote about getting the interview and I too had an interview coming up.
I am totally gutted for you as I know how much we can get our hopes up, but perhaps in the long run, it may have been a good thing you didnt get it so keep you head up and just keep applying for those dream jobs and I am sure you will get one of them.
You also seem like a really nice guy, and that will go a long way in any industry.

Secondly I will go on to my interview experience. Here in the UK I had my interview with microsoft this week as well. I too am less than satisfied with the interview structure and how things went overall.
I applied for a Public Relations position and in previous rounds I had to answer skills based questions on certain things like leadership, working under pressure, etc. I also had to hand in my CV alongside all of these questions I answered on the form.
Firstly I was interviewed by a man whose english was poor as it was definitely not his first language, which didn't set a great tone for the rest of the interview as I did have to ask for a lot of things repeated. He, like your interviewer, was not in my field, he was just a generic HR guy who didn't seem to have any idea about the role I was applying for.
Before we started, he asked me, do you have any questions. I said yes 'What does the PR role actually involve, as there is very little detail on the ins and out of the role on the website, only the basic structure of any internship' to which he said we can come back to the question at the end, kind of a dodge.
Then finally before we started, he said we were having a competancy based interview and he would have me to back up answers with times in my life I had solved certain problems, of course, most times you have used in your previous answers on the application form. He then told me he did not want me to use any of these times I had already talked about and use other times I had shown these skills.
To me, this is ridiculous, you have either shown the skills or you haven't and if you struggle to answer a question because you aren't allowed to use a previous experience and look stupid, its not really your fault and you end up coming up with weaker answers. This threw all prep I had out the window.

We then sort out basic formalities about checking exam results etc and then I got the same question about when I graduate. I am currently in the 3rd year of my integrated undergraduate masters degree in marine biology, this is basically a BSc and a MSc rolled into one course over 4 years, so I am still technically an undergraduate and I am in my penultimate year of my degree. He asked, 'are you on a year in industry course and do you graduate in 2015?' to which I replied, I am not but I have been allowed to look for an internship and should I find one, I will be able to defer my final year and then I shall graduate in 2015. Like you, I don't see how this is relevant. I am able to take the internship and I too am technically a sophomore within my degree programme. This really shouldn't count against me.

The next question was 'what do you know about the PR internship programme?'
Now here, I was losing my mind. That was my very first question which he refused to provide any detail, I then described what little there is on the intern web page and echoed my earlier thoughts. To which he said 'ok' and moved on. Really not helping the flow of the interview or making me feel comfortable.

Generally, the actual skills based questions went ok. I wasn't really happy with not being able to use my best life experiences as I have already talked about them. None of the questions were related to PR or any PR experience, so I kind of felt short changed by the experience.

The interview concluded I asked about the PR role, where I would be placed, what I would be expected of me. He said, after the final assessment stage, I could be placed in any PR department under any of microsofts brands but he didn't really know the actual ins and outs of the internship and what would be expected, which I felt was really poor.

I haven't had a reply back from them yet, but I am certainly not confident of getting an internship.

Perhaps my shitty experience with microsoft will give you a bit of comfort, as seeing that I was not the only one made me feel a little better.

Take care cecil!
How many bears could bear grylls grill if bear grylls coud grill bears?
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2013-03-16 09:20:03
March 16 2013 09:18 GMT
#58
@GeorgeyBeats
Thanks for sharing your experience! Yeah I think your interview went even worse than mine, haha. It's quite nice to hear other peoples' experiences. It must have been all the more nerve wracking for you, since I myself had about 10 other people I knew with very similar interviews to myself (since it was a 2 day interveiwathon).

On March 16 2013 14:13 Snipinpanda wrote:
It's 7 to -8.

You seem to be doing (1+1+3+4+5+6+7) in your first calculations.
Even so your calculations aren't quite correct.

1 + 1 + 3 + 4 + 5 + 6 = 20 = 0b10100

Since you ignore the highest bit(it over flowed), it's 0100 which is one less than the total you had for your other calculation.

Ah yes, I overflowed incorrectly. I was incrementing by one during each addition instead of doing the calculation and truncating the extra bits off. Either way you can't just "ignore" bit overflow and solve the interview problem.
Serpico
Profile Joined May 2010
4285 Posts
Last Edited: 2013-03-16 09:58:10
March 16 2013 09:55 GMT
#59
I just graduated from the U, gl to you in your future endeavors. I've been trying to get a good job with very little experience (and a very mediocre degree) with little success. I'll probably have to humble myself and start at the bottom somewhere. Keep trying, you have to remember that many, many people only succeeded because they were simply persistent.
GeorgeyBeats
Profile Joined April 2011
United Kingdom338 Posts
March 16 2013 10:33 GMT
#60
On March 16 2013 18:18 CecilSunkure wrote:
@GeorgeyBeats
Thanks for sharing your experience! Yeah I think your interview went even worse than mine, haha. It's quite nice to hear other peoples' experiences. It must have been all the more nerve wracking for you, since I myself had about 10 other people I knew with very similar interviews to myself (since it was a 2 day interveiwathon).


Maybe my view is slightly skewed by my saltiness on behalf of it not going too great :L But even if I get through to the final stage, my views on that shall remain the same.
The fact you sound like an intelligent chap and then being told that the candidates didn't have the technical knowledge is a real kick in the nuts after being interviewed by someone not in the position you are going for.

On March 16 2013 18:55 Serpico wrote:
I just graduated from the U, gl to you in your future endeavors. I've been trying to get a good job with very little experience (and a very mediocre degree) with little success. I'll probably have to humble myself and start at the bottom somewhere. Keep trying, you have to remember that many, many people only succeeded because they were simply persistent.


I could offer some advice, just try and drag in any contacts that you have. The sad thing is that its not what you know sometimes, it is who you know. Just ask around, does anyone you know someone in a company or sector you would like to work in, just ask for a phone number and have a chat on the phone. Most of all be nice. Its amazing how far it will get you. Best of luck buddy.
How many bears could bear grylls grill if bear grylls coud grill bears?
Prev 1 2 3 4 Next All
Please log in or register to reply.
Live Events Refresh
PSISTORM Gaming Misc
15:55
FSL Team League: PTB vs ASH
Liquipedia
OSC
15:00
Masters Cup #150 Qualifier
Liquipedia
Map Test Tournament
11:00
TLMC #15: Playoffs
ByuN vs LamboLIVE!
TBD vs Clem
WardiTV1486
ComeBackTV 954
IndyStarCraft 246
Rex144
3DClanTV 65
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
IndyStarCraft 246
Rex 144
ProTech107
Codebar 2
StarCraft: Brood War
Britney 43171
Horang2 1819
Shuttle 1486
Mini 1143
EffOrt 741
Flash 680
BeSt 656
sSak 548
firebathero 416
Hyuk 339
[ Show more ]
Soulkey 213
Hyun 141
Noble 89
Killer 89
Mind 85
Mong 80
JYJ64
Free 46
Bonyth 39
soO 37
Rock 35
Movie 27
Backho 26
ToSsGirL 22
zelot 22
HiyA 20
Hm[arnc] 20
JulyZerg 17
Sacsri 13
Terrorterran 13
ivOry 12
ajuk12(nOOB) 11
SilentControl 10
Dota 2
Gorgc9918
XcaliburYe540
syndereN388
LuMiX0
Counter-Strike
fl0m2335
Heroes of the Storm
Liquid`Hasu484
Khaldor437
Other Games
singsing2323
FrodaN1154
B2W.Neo750
Beastyqt398
Skadoodle324
Lowko226
KnowMe181
Hui .127
ArmadaUGS115
Fuzer 90
Organizations
Other Games
EGCTV1142
BasetradeTV131
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• StrangeGG 31
• Airneanach3
• intothetv
• LaughNgamezSOOP
• AfreecaTV YouTube
• sooper7s
• Migwel
• Kozan
• IndyKCrew
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 2438
League of Legends
• Jankos3128
Other Games
• WagamamaTV409
• Shiphtur271
Upcoming Events
[BSL 2025] Weekly
1h 55m
Safe House 2
1h 55m
Sparkling Tuna Cup
17h 55m
Map Test Tournament
18h 55m
TBD vs Spirit
TBD vs herO
OSC
19h 55m
IPSL
1d 2h
Bonyth vs Art_Of_Turtle
Razz vs rasowy
Afreeca Starleague
1d 17h
Barracks vs Snow
Afreeca Starleague
2 days
Soma vs Bisu
The PondCast
4 days
CranKy Ducklings
6 days
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.