• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:13
CEST 03:13
KST 10:13
  • 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
[ASL20] Ro24 Preview Pt2: Take-Off6[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy9uThermal's 2v2 Tour: $15,000 Main Event18
Community News
Weekly Cups (Aug 18-24): herO dethrones MaxPax5Maestros of The Game—$20k event w/ live finals in Paris30Weekly Cups (Aug 11-17): MaxPax triples again!13Weekly Cups (Aug 4-10): MaxPax wins a triple6SC2's Safe House 2 - October 18 & 195
StarCraft 2
General
Weekly Cups (Aug 18-24): herO dethrones MaxPax What mix of new and old maps do you want in the next 1v1 ladder pool? (SC2) : A Eulogy for the Six Pool Geoff 'iNcontroL' Robinson has passed away 2v2 & SC: Evo Complete: Weekend Double Feature
Tourneys
WardiTV Mondays Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series Sparkling Tuna Cup - Weekly Open Tournament Monday Nights Weeklies
Strategy
Custom Maps
External Content
Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies Mutation # 485 Death from Below
Brood War
General
No Rain in ASL20? BW General Discussion Flash On His 2010 "God" Form, Mind Games, vs JD BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ro24 Preview Pt2: Take-Off
Tourneys
[ASL20] Ro24 Group E [Megathread] Daily Proleagues [ASL20] Ro24 Group D [ASL20] Ro24 Group B
Strategy
Simple Questions, Simple Answers Fighting Spirit mining rates [G] Mineral Boosting Muta micro map competition
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread General RTS Discussion Thread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine The year 2050 European Politico-economics QA Mega-thread
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
High temperatures on bridge(s) Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment"
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
Evil Gacha Games and the…
ffswowsucks
Breaking the Meta: Non-Stand…
TrAiDoS
INDEPENDIENTE LA CTM
XenOsky
[Girl blog} My fema…
artosisisthebest
Sharpening the Filtration…
frozenclaw
ASL S20 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 4101 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
PiGosaur Monday
00:00
#46
PiGStarcraft395
SteadfastSC100
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft395
Nina 162
NeuroSwarm 132
SteadfastSC 100
ProTech79
Nathanias 70
CosmosSc2 36
StarCraft: Brood War
Artosis 819
Hyuk 482
NaDa 71
Sharp 56
Dota 2
monkeys_forever590
Counter-Strike
fl0m1358
taco 160
Super Smash Bros
hungrybox417
Liquid`Ken19
Other Games
summit1g6306
tarik_tv2796
shahzam1586
Day[9].tv851
C9.Mang0396
WinterStarcraft321
ViBE275
Maynarde132
ToD106
ROOTCatZ15
Organizations
Other Games
gamesdonequick949
BasetradeTV26
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• rockletztv 32
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• Sammyuel 0
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt355
Other Games
• Day9tv851
• Scarra692
Upcoming Events
Afreeca Starleague
8h 47m
hero vs Alone
Royal vs Barracks
Replay Cast
22h 47m
The PondCast
1d 8h
WardiTV Summer Champion…
1d 9h
Clem vs Classic
herO vs MaxPax
Replay Cast
1d 22h
LiuLi Cup
2 days
MaxPax vs TriGGeR
ByuN vs herO
Cure vs Rogue
Classic vs HeRoMaRinE
Cosmonarchy
2 days
OyAji vs Sziky
Sziky vs WolFix
WolFix vs OyAji
BSL Team Wars
2 days
Team Hawk vs Team Dewalt
BSL Team Wars
2 days
Team Hawk vs Team Bonyth
SC Evo League
3 days
TaeJa vs Cure
Rogue vs threepoint
ByuN vs Creator
MaNa vs Classic
[ Show More ]
Maestros of the Game
3 days
ShoWTimE vs Cham
GuMiho vs Ryung
Zoun vs Spirit
Rogue vs MaNa
[BSL 2025] Weekly
3 days
SC Evo League
4 days
Maestros of the Game
4 days
SHIN vs Creator
Astrea vs Lambo
Bunny vs SKillous
HeRoMaRinE vs TriGGeR
BSL Team Wars
4 days
Team Bonyth vs Team Sziky
BSL Team Wars
4 days
Team Dewalt vs Team Sziky
Monday Night Weeklies
5 days
Replay Cast
5 days
Sparkling Tuna Cup
6 days
Liquipedia Results

Completed

CSLAN 3
uThermal 2v2 Main Event
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
CSL Season 18: Qualifier 1
Acropolis #4 - TS1
CSL Season 18: Qualifier 2
SEL Season 2 Championship
WardiTV Summer 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025

Upcoming

CSL 2025 AUTUMN (S18)
LASL Season 20
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
RSL Revival: Season 2
Maestros of the Game
EC S1
Sisters' Call Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 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.