• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:49
CEST 14:49
KST 21:49
  • 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
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL62Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event21Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Program: SC2 / XSplit / OBS Scene Switcher The SCII GOAT: A statistical Evaluation Statistics for vetoed/disliked maps Weekly Cups (June 23-29): Reynor in world title form? PiG Sty Festival #5: Playoffs Preview + Groups Recap
Tourneys
RSL: Revival, a new crowdfunded tournament series Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays FEL Cracov 2025 (July 27) - $8000 live event Korean Starcraft League Week 77
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Player “Jedi” cheat on CSL SC uni coach streams logging into betting site Flash Announces Hiatus From ASL Practice Partners (Official) ASL20 Preliminary Maps
Tourneys
[BSL20] Grand Finals - Sunday 20:00 CET [Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread What do you want from future RTS games? Beyond All Reason
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 Summer Games Done Quick 2025! Trading/Investing Thread Things Aren’t Peaceful in Palestine
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread Formula 1 Discussion NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 624 users

The Big Programming Thread - Page 715

Forum Index > General Forum
Post a Reply
Prev 1 713 714 715 716 717 1031 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Acrofales
Profile Joined August 2010
Spain17971 Posts
April 01 2016 15:44 GMT
#14281
For real? Sounds like homework to me.

Hint, rewrite your equation as b^3=X. Then b = cubic root of X.

Then you loop through all integer values for a, and output when b is an integer. However, a corollary of Fermat's theorem might have something to say on how many solutions there are. I'm not too sure on number theory. In R there are an infinite number of solutions....
tofucake
Profile Blog Joined October 2009
Hyrule19030 Posts
April 01 2016 15:46 GMT
#14282
this is a relatively simple process:

you have
x = a^3 + b^3

so to find b you move a over and take the cube root:

b = cube_root(x - a^3)

now you plug in x = 6 and just pick a number for a, say -3:

b = cube_root(6 - a^3) = cube_root(6 - -27) = cube_root(33) ~ 3.2
Liquipediaasante sana squash banana
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
Last Edited: 2016-04-01 16:01:10
April 01 2016 15:46 GMT
#14283
On April 02 2016 00:34 Manit0u wrote:
Anyone here good with maths?

How would I write a computer program to calculate (find a and b) 6 = a^3 + b^3 where a and b can be any integer (positive or negative)?

I desperately need solution to this equation and I'm too noob at this stuff...


Well you have 2 unknowns and 1 equation, so infinite possibilities. I guess you could choose any value for a, then sub back in and solve for b.

EDIT:


for a=1:step_size:N
b = (6-a^3)^(1/3);
end
TRUEESPORTS || your days as a respected member of team liquid are over
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2016-04-01 16:03:13
April 01 2016 16:01 GMT
#14284
On April 02 2016 00:46 tofucake wrote:
this is a relatively simple process:

you have
x = a^3 + b^3

so to find b you move a over and take the cube root:

b = cube_root(x - a^3)

now you plug in x = 6 and just pick a number for a, say -3:

b = cube_root(6 - a^3) = cube_root(6 - -27) = cube_root(33) ~ 3.2


The thing is, a and b HAVE to be integers. I guess I won't solve it since no one has so far

The full thing to calculate is 33 = a^3 + b^3 + c^3 (people are now at trying solutions involving integers on scale of 10^14) but I thought if I simplified it to 6 = a^3 + b^3 it could potentially be easier and my computer could handle it
Time is precious. Waste it wisely.
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
Last Edited: 2016-04-01 16:36:21
April 01 2016 16:08 GMT
#14285
Can't you do a triple nested for loop? Cube each iteration of the loop and sum possible combinations (i, j, k plus or minus). If that number is 33 then you have a result that works.

There is probably some optimization you can do so you're not counting repeats as well, but forcing C to be three isn't going to help you find all the solutions.

The question to ask would be do you need any solution or all the solutions?
I'll always be your shadow and veil your eyes from states of ain soph aur.
Acrofales
Profile Joined August 2010
Spain17971 Posts
April 01 2016 16:14 GMT
#14286
So you (arbitrarily?) chose c=3 and decided to try to solve it? Maybe there's no solution for a,b or c = 3. But I understand it's a combinatorial problem. The easiest way of looping is the solution I outlined above, but if people are looking for a gigantic solutions, chances are that there is either no solution (which can probably be deduced as a corrolary from something to do with Fermat's last theorem). Either that, or there is a proof that there is a solution, but nobody has found it yet.

Just out of interest's sake: why 33? Seems like a pretty arbitrary constant?
tofucake
Profile Blog Joined October 2009
Hyrule19030 Posts
April 01 2016 16:17 GMT
#14287
Yeah there's not any sort of small integer solution to it. But if you get a big server farm you might find an answer...
Liquipediaasante sana squash banana
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2016-04-01 16:30:13
April 01 2016 16:25 GMT
#14288
On April 02 2016 01:01 Manit0u wrote:
Show nested quote +
On April 02 2016 00:46 tofucake wrote:
this is a relatively simple process:

you have
x = a^3 + b^3

so to find b you move a over and take the cube root:

b = cube_root(x - a^3)

now you plug in x = 6 and just pick a number for a, say -3:

b = cube_root(6 - a^3) = cube_root(6 - -27) = cube_root(33) ~ 3.2


The thing is, a and b HAVE to be integers. I guess I won't solve it since no one has so far

The full thing to calculate is 33 = a^3 + b^3 + c^3 (people are now at trying solutions involving integers on scale of 10^14) but I thought if I simplified it to 6 = a^3 + b^3 it could potentially be easier and my computer could handle it

I'm pretty sure there is no solution for 6 = a^3 + b^3 for integers a and b.

Reason for the case where a is positive and b is negative or vice versa:

0^3 = 0
(+-1)^3 = +-1
(+-2)^3 = +-8
(+-3)^3 = +-27
(+-4)^3 = +-64

It's obvious that the distance between 2 rows gets larger each time. So if we don't find a solution in the first few rows, by the time the distance is greater than 6, we can't find a solution at all. Which happens to be the case rather quickly.
That's because once we have a^3 calculated, we need a -(b^3) that is exactly 6 smaller than a^3. But if the closest -(b^3) is already 37 less than a^3, the further away ones certainly won't do.

To extend on this: if you were to replace the 6 with an arbitrary x, you could just start enumerating all the possible values for a^3 until the distance between two such values becomes larger than x. Then you just do a fairly simple search for a pair that is exactly x apart.

For example if x was 26, we would get the above list. 64 is already too large (distance to 27 is 37) so we stop there. Then we start at the 27 and look among the smaller numbers for the right match, which is the 1. So 26 = 3^3 + (-1)^3. If the 27 wouldn't work out, we would work our way down. Though obviously that would be pointless in this case.

With a and b having the same sign, things should work out similarly. We can restrict that to a, b and x all being positive because of logic and reasons. So now you enumerate all a^3 until the result is larger than x and look for a match. Since everything is positive, no larger numbers can work out.


Now, if you're trying to solve 33 = a^3 + b^3 + c^3, or even worse x = a^3 + b^3 + c^3, then scratch all of the above. With just a and b we were able to determine a simple criterion for when to stop iterating. That same criterion won't work for a, b and c. Maybe there's another upper limit, but it would likely be much higher.
If you have a good reason to disagree with the above, please tell me. Thank you.
Acrofales
Profile Joined August 2010
Spain17971 Posts
April 01 2016 16:29 GMT
#14289
On April 02 2016 01:25 spinesheath wrote:
Show nested quote +
On April 02 2016 01:01 Manit0u wrote:
On April 02 2016 00:46 tofucake wrote:
this is a relatively simple process:

you have
x = a^3 + b^3

so to find b you move a over and take the cube root:

b = cube_root(x - a^3)

now you plug in x = 6 and just pick a number for a, say -3:

b = cube_root(6 - a^3) = cube_root(6 - -27) = cube_root(33) ~ 3.2


The thing is, a and b HAVE to be integers. I guess I won't solve it since no one has so far

The full thing to calculate is 33 = a^3 + b^3 + c^3 (people are now at trying solutions involving integers on scale of 10^14) but I thought if I simplified it to 6 = a^3 + b^3 it could potentially be easier and my computer could handle it

I'm pretty sure there is no solution for 6 = a^3 + b^3 for integers a and b.

Reason for the case where a is positive and b is negative or vice versa:

0^3 = 0
(+-1)^3 = +-1
(+-2)^3 = +-8
(+-3)^3 = +-27
(+-4)^3 = +-64

It's obvious that the distance between 2 rows gets larger each time. So if we don't find a solution in the first few rows, by the time the distance is greater than 6, we can't find a solution at all. Which happens to be the case rather quickly.
That's because once we have a^3 calculated, we need a -(b^3) that is exactly 6 smaller than a^3. But if the closest -(b^3) is already 37 less than a^3, the further away ones certainly won't do.

To extend on this: if you were to replace the 6 with an arbitrary x, you could just start enumerating all the possible values for a^3 until the distance between two such values becomes larger than x. Then you just do a fairly simple search for a pair that is exactly x apart.

For example if x was 26, we would get the above list. 64 is already too large (distance to 27 is 37) so we stop there. Then we start at the 27 and look among the smaller numbers for the right match, which is the 1. So 26 = 3^3 + (-1)^3. If the 27 wouldn't work out, we would work our way down. Though obviously that would be pointless in this case.

With a and b having the same sign, things should work out similarly. We can restrict that to a, b and x all being positive because of logic and reasons. So now you enumerate all a^3 until the result is larger than x and look for a match. Since everything is positive, no larger numbers can work out.


Excellent point. So for c=3 there is no solution! Well proved! Now manit0u can move on to c=4, 5, ...
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
Last Edited: 2016-04-01 16:31:19
April 01 2016 16:30 GMT
#14290
Ah missed the integer part... I tried it in Mathematica and nothing came up (Solve[6==a^3+b^3,{a,b},Integers]), so good luck!

Fairly certain there is no solution, but I am no mathematician
TRUEESPORTS || your days as a respected member of team liquid are over
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
April 01 2016 16:32 GMT
#14291
On April 02 2016 01:29 Acrofales wrote:
Excellent point. So for c=3 there is no solution! Well proved! Now manit0u can move on to c=4, 5, ...

It's not c = 3. You misread that. His general case is this:

33 = a^3 + b^3 + c^3

So it's always cubic, but one extra term.

Also I updated my post above for the general case.
If you have a good reason to disagree with the above, please tell me. Thank you.
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
Last Edited: 2016-04-01 16:36:55
April 01 2016 16:34 GMT
#14292
On April 02 2016 01:25 spinesheath wrote:
Now, if you're trying to solve 33 = a^3 + b^3 + c^3, or even worse x = a^3 + b^3 + c^3, then scratch all of the above. With just a and b we were able to determine a simple criterion for when to stop iterating. That same criterion won't work for a, b and c. Maybe there's another upper limit, but it would likely be much higher.


There is no upper limit because the third value is arbitrary. If I set c to be -100 then the difference would need to be 1000033, but there is nothing stopping me from setting c to 1000 or 10000 to make the difference even larger.
I'll always be your shadow and veil your eyes from states of ain soph aur.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
April 01 2016 16:39 GMT
#14293
On April 02 2016 01:34 Blitzkrieg0 wrote:
Show nested quote +
On April 02 2016 01:25 spinesheath wrote:
Now, if you're trying to solve 33 = a^3 + b^3 + c^3, or even worse x = a^3 + b^3 + c^3, then scratch all of the above. With just a and b we were able to determine a simple criterion for when to stop iterating. That same criterion won't work for a, b and c. Maybe there's another upper limit, but it would likely be much higher.


There is no upper limit because the third value is arbitrary. If I set c to be 100 then the difference would need to be 1000033, but there is nothing stopping me from setting c to 1000 or 10000 to make the difference even larger.

But can you find a and b such that their cubes they add up to a value that is "in the right range" of c^3? Maybe the numbers grow apart too much and you just can't possibly hit that sweet spot. I can't reason for either way off the top of my head.
If you have a good reason to disagree with the above, please tell me. Thank you.
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
Last Edited: 2016-04-01 16:57:14
April 01 2016 16:46 GMT
#14294
On April 02 2016 01:39 spinesheath wrote:
Show nested quote +
On April 02 2016 01:34 Blitzkrieg0 wrote:
On April 02 2016 01:25 spinesheath wrote:
Now, if you're trying to solve 33 = a^3 + b^3 + c^3, or even worse x = a^3 + b^3 + c^3, then scratch all of the above. With just a and b we were able to determine a simple criterion for when to stop iterating. That same criterion won't work for a, b and c. Maybe there's another upper limit, but it would likely be much higher.


There is no upper limit because the third value is arbitrary. If I set c to be 100 then the difference would need to be 1000033, but there is nothing stopping me from setting c to 1000 or 10000 to make the difference even larger.

But can you find a and b such that their cubes they add up to a value that is "in the right range" of c^3? Maybe the numbers grow apart too much and you just can't possibly hit that sweet spot. I can't reason for either way off the top of my head.


You should be able to make a good guess about values you need to check, but I don't think that is going to manage the size of the problem enough to matter. The trivial example of this being whether the third variable will be positive or negative, but you could do a lot better than that.

The complexity of the problem comes from the fact that you have an arbitrary list of integers to check. Reducing the values you need to check for each integer on that list isn't going to help you that much.
I'll always be your shadow and veil your eyes from states of ain soph aur.
Acrofales
Profile Joined August 2010
Spain17971 Posts
April 01 2016 17:18 GMT
#14295
On April 02 2016 01:32 spinesheath wrote:
Show nested quote +
On April 02 2016 01:29 Acrofales wrote:
Excellent point. So for c=3 there is no solution! Well proved! Now manit0u can move on to c=4, 5, ...

It's not c = 3. You misread that. His general case is this:

33 = a^3 + b^3 + c^3

So it's always cubic, but one extra term.

Also I updated my post above for the general case.

Exactly.

But a^3 + b^3 = 6 would find you the solution to the more general problem for c=3.

You just proved that for c=3 there is no solution. By setting c=4, you have to retry and show there is no solution such that a^3 + b^3 = -53

And so forth for all c in Z
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
April 01 2016 17:28 GMT
#14296
On April 02 2016 02:18 Acrofales wrote:
Show nested quote +
On April 02 2016 01:32 spinesheath wrote:
On April 02 2016 01:29 Acrofales wrote:
Excellent point. So for c=3 there is no solution! Well proved! Now manit0u can move on to c=4, 5, ...

It's not c = 3. You misread that. His general case is this:

33 = a^3 + b^3 + c^3

So it's always cubic, but one extra term.

Also I updated my post above for the general case.

Exactly.

But a^3 + b^3 = 6 would find you the solution to the more general problem for c=3.

You just proved that for c=3 there is no solution. By setting c=4, you have to retry and show there is no solution such that a^3 + b^3 = -53

And so forth for all c in Z

Oh, now I see. I totally thought you meant for him to try 6 = a^4 + b^4 next. My bad.
If you have a good reason to disagree with the above, please tell me. Thank you.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
April 01 2016 17:46 GMT
#14297
I always get spooked by such stuff...

Time is precious. Waste it wisely.
tofucake
Profile Blog Joined October 2009
Hyrule19030 Posts
April 01 2016 17:47 GMT
#14298
wat?

c = 4 changes the equation to -31 = a^3 + b^3, not -53...
Liquipediaasante sana squash banana
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2016-04-01 18:09:15
April 01 2016 18:06 GMT
#14299
On April 02 2016 02:46 Manit0u wrote:
I always get spooked by such stuff...

That parametric solution for 1... why go to such lengths when you can just use 1 = 1^3 + x^3 + (-x)^3 and still get infinitely many solutions? The same holds true for every single k^3 = k^3 + x^3 + (-x)^3.

Anyways, even though he didn't say so specifically, we can safely assume that there is no easy way to find an upper limit for the 33 case. Or else someone would already have found a solution.

Integer math is surprisingly hard, even though the numbers seem so much simpler than real numbers. In fact many problems are a lot easier if you're looking for solutions in the real numbers instead of integer solutions.

Long story short: if you want to solve this, you should probably head to university and delve into the field of discrete mathematics. It seems like people with way more experience and knowledge in the field than us combined have tried to find a solution.
If you have a good reason to disagree with the above, please tell me. Thank you.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
April 01 2016 18:15 GMT
#14300
On April 02 2016 03:06 spinesheath wrote:
Show nested quote +
On April 02 2016 02:46 Manit0u wrote:
I always get spooked by such stuff...

That parametric solution for 1... why go to such lengths when you can just use 1 = 1^3 + x^3 + (-x)^3 and still get infinitely many solutions? The same holds true for every single k^3 = k^3 + x^3 + (-x)^3.

Anyways, even though he didn't say so specifically, we can safely assume that there is no easy way to find an upper limit for the 33 case. Or else someone would already have found a solution.

Integer math is surprisingly hard, even though the numbers seem so much simpler than real numbers. In fact many problems are a lot easier if you're looking for solutions in the real numbers instead of integer solutions.

Long story short: if you want to solve this, you should probably head to university and delve into the field of discrete mathematics. It seems like people with way more experience and knowledge in the field than us combined have tried to find a solution.


Yeah, I misread the the second note in the video. Thought it said "Pause and try it yourself" like the first one, but in fact it said "Definitely don't pause and try it yourself!"
Time is precious. Waste it wisely.
Prev 1 713 714 715 716 717 1031 Next
Please log in or register to reply.
Live Events Refresh
WardiTV European League
12:00
Swiss Groups Day 2
WardiTV744
TKL 431
Liquipedia
FEL
12:00
Cracov 2025: Qualifier #2
IndyStarCraft 310
CranKy Ducklings79
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 431
IndyStarCraft 310
Rex 119
MindelVK 39
StarCraft: Brood War
Sea 11032
Calm 9514
Rain 7180
Bisu 2849
Horang2 2292
Hyuk 1365
Jaedong 1317
Shuttle 516
Rush 430
EffOrt 300
[ Show more ]
Stork 282
Leta 270
Last 240
PianO 210
Mini 206
ToSsGirL 156
Hyun 140
ZerO 95
Movie 79
hero 55
TY 53
Sea.KH 41
JYJ40
Killer 35
JulyZerg 29
ajuk12(nOOB) 22
HiyA 20
GoRush 19
Free 19
zelot 19
Terrorterran 18
Sacsri 17
Barracks 16
Icarus 6
ivOry 2
Stormgate
NightEnD21
Dota 2
qojqva3057
XcaliburYe452
canceldota102
League of Legends
singsing2904
Counter-Strike
x6flipin739
zeus453
Heroes of the Storm
Khaldor315
Other Games
Gorgc2822
B2W.Neo1375
DeMusliM540
Happy390
Fuzer 389
crisheroes369
Pyrionflax337
XaKoH 263
Hui .243
RotterdaM147
ArmadaUGS70
KnowMe60
ZerO(Twitch)17
Organizations
StarCraft: Brood War
CasterMuse 25
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• StrangeGG 38
• iHatsuTV 6
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV749
• Ler42
Upcoming Events
BSL: ProLeague
5h 11m
Dewalt vs Bonyth
Replay Cast
1d 11h
Sparkling Tuna Cup
1d 21h
WardiTV European League
2 days
The PondCast
2 days
Replay Cast
3 days
RSL Revival
3 days
ByuN vs SHIN
Clem vs Reynor
Replay Cast
4 days
RSL Revival
4 days
Classic vs Cure
FEL
5 days
[ Show More ]
RSL Revival
5 days
FEL
5 days
FEL
6 days
Sparkling Tuna Cup
6 days
RSL Revival
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Jiahua Invitational
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
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
FISSURE Playground #1
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.