• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 04:33
CET 10:33
KST 18:33
  • 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
ByuL: The Forgotten Master of ZvT29Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Team Liquid Map Contest - Preparation Notice5Weekly Cups (Feb 23-Mar 1): herO doubles, 2v2 bonanza1Weekly Cups (Feb 16-22): MaxPax doubles0Weekly Cups (Feb 9-15): herO doubles up2ACS replaced by "ASL Season Open" - Starts 21/0258
StarCraft 2
General
https://www.facebook.com/DermaFixFungusTreatmentGe Team Liquid Map Contest - Preparation Notice How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? ByuL: The Forgotten Master of ZvT Nexon's StarCraft game could be FPS, led by UMS maker
Tourneys
RSL Season 4 announced for March-April Sea Duckling Open (Global, Bronze-Diamond) PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) Sparkling Tuna Cup - Weekly Open Tournament SEL Doubles (SC Evo Bimonthly)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 515 Together Forever Mutation # 514 Ulnar New Year Mutation # 513 Attrition Warfare
Brood War
General
BW General Discussion BSL 22 Map Contest — Submissions OPEN to March 10 BGH Auto Balance -> http://bghmmr.eu/ Gypsy to Korea It's March 3rd
Tourneys
[BSL22] Open Qualifier #1 - Sunday 21:00 CET [Megathread] Daily Proleagues BWCL Season 64 Announcement The Casual Games of the Week Thread
Strategy
Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular?
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Battle Aces/David Kim RTS Megathread Diablo 2 thread Path of Exile
Dota 2
The Story of Wings Gaming Official 'what is Dota anymore' discussion
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
Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
Russo-Ukrainian War Thread YouTube Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine UK Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Gaming-Related Deaths
TrAiDoS
ONE GREAT AMERICAN MARINE…
XenOsky
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1481 users

The Big Programming Thread - Page 924

Forum Index > General Forum
Post a Reply
Prev 1 922 923 924 925 926 1032 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.
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2017-11-30 19:32:50
November 30 2017 18:59 GMT
#18461
On November 30 2017 12:11 phar wrote:
Show nested quote +
On November 30 2017 05:22 sc-darkness wrote:
Ok, thank you for answers. Much appreciated! Despite studying some algorithms and data structures at university, I think I'll start reading Introductions to Algorithms in my free time. Here is the book: https://www.amazon.co.uk/Introduction-Algorithms-Thomas-H-Cormen-ebook/dp/B007CNRCAO/ref=sr_1_2?ie=UTF8&qid=1511986799&sr=8-2&keywords=introduction to algorithms

Has anyone read it? Any thoughts? People say it's really good.

That book is called CLR(S), it is the canonical algorithms text. If you are going to read one algorithms book, that is the one to read.


Could you recommend any chapters please? I have an interview at the beginning of January, and they may ask me about algorithms. They usually deal with office suite (kind of like Microsoft Word, Excel, etc). So I'm thinking data structures and string matching algorithms. Anything else? I doubt I'll read the entire book by then though. It's 1000+ pages. I could try to read as much as I can though.
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
Last Edited: 2017-11-30 19:15:08
November 30 2017 19:04 GMT
#18462
On December 01 2017 01:23 Acrofales wrote:
Dumb question:

I have a stupid problem where I have to correct a whole load of stuff. And it's going to be fastest to do this with a long list of radio buttons where I can mark "right" "half right" or "wrong". However, I don't know exactly how many radio buttons I need beforehand because it's loaded dynamically from the database.

I have my code for loading this stuff in python, but wtf do I use to generate the UI? I was looking at guidata, but it seems to want a fixed number of items up front, rather than being able to add them at runtime.

Am I incredibly stupid to think a simple and fast way of doing this is by simply generating a webpage, hosting it with flask and then saving the answers back into the database on a form submission?


You can using tkinter, I did a similar thing using a grid and an ordered dict then iterating over the dict and adding items to the grid.

It will look something like:

Load names from database
For i, n in enumerate(names):
In col 0 row i, put the name
In col 1 row i, put the button

Then have a save button to read and write the data from the buttons
TRUEESPORTS || your days as a respected member of team liquid are over
Excludos
Profile Blog Joined April 2010
Norway8233 Posts
November 30 2017 20:39 GMT
#18463
On November 30 2017 18:11 Liebig wrote:
Advent of Code starts tomorrow.

Who's going to do it ?


Didn't know about it before now. Sounds fun! I'll join
Acrofales
Profile Joined August 2010
Spain18227 Posts
November 30 2017 22:58 GMT
#18464
On December 01 2017 04:04 emperorchampion wrote:
Show nested quote +
On December 01 2017 01:23 Acrofales wrote:
Dumb question:

I have a stupid problem where I have to correct a whole load of stuff. And it's going to be fastest to do this with a long list of radio buttons where I can mark "right" "half right" or "wrong". However, I don't know exactly how many radio buttons I need beforehand because it's loaded dynamically from the database.

I have my code for loading this stuff in python, but wtf do I use to generate the UI? I was looking at guidata, but it seems to want a fixed number of items up front, rather than being able to add them at runtime.

Am I incredibly stupid to think a simple and fast way of doing this is by simply generating a webpage, hosting it with flask and then saving the answers back into the database on a form submission?


You can using tkinter, I did a similar thing using a grid and an ordered dict then iterating over the dict and adding items to the grid.

It will look something like:

Load names from database
For i, n in enumerate(names):
In col 0 row i, put the name
In col 1 row i, put the button

Then have a save button to read and write the data from the buttons


Sounds easier than using an HTML front-end. I'll give it a go. Thanks!
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2017-12-01 06:38:35
December 01 2017 05:57 GMT
#18465
On November 30 2017 17:15 Silvanel wrote:
My company has around 26000 employees dunno if its is large or small for You. Granted the recruiting scheme is different depending on location (so can be different say in German, USA or in India and i would say it most certainly is). Still it works fine for our location i think (Poland). The project i work currently in has around 600 engineers spread around the globe. For sure some of them are overqualified for their postion, some underqualified and some are exactly where they need to be. But i would say its more because of the size than recruiting scheme.


Sure, that's not small at all. How many engineers, like 10k, or are you more sales oriented? If you've got 10k eng you must be getting a lot of applicants beyond just referrals and some headhunters. And at that point someone has to be screening for the dishonest idiots... or else there's some sizeable number of eng there who can't actually write code...

On December 01 2017 03:59 sc-darkness wrote:
Show nested quote +
On November 30 2017 12:11 phar wrote:
On November 30 2017 05:22 sc-darkness wrote:
Ok, thank you for answers. Much appreciated! Despite studying some algorithms and data structures at university, I think I'll start reading Introductions to Algorithms in my free time. Here is the book: https://www.amazon.co.uk/Introduction-Algorithms-Thomas-H-Cormen-ebook/dp/B007CNRCAO/ref=sr_1_2?ie=UTF8&qid=1511986799&sr=8-2&keywords=introduction to algorithms

Has anyone read it? Any thoughts? People say it's really good.

That book is called CLR(S), it is the canonical algorithms text. If you are going to read one algorithms book, that is the one to read.


Could you recommend any chapters please? I have an interview at the beginning of January, and they may ask me about algorithms. They usually deal with office suite (kind of like Microsoft Word, Excel, etc). So I'm thinking data structures and string matching algorithms. Anything else? I doubt I'll read the entire book by then though. It's 1000+ pages. I could try to read as much as I can though.

Depends on where the interview is. If it's Amazon I would take care to not neglect graph algorithms lol.
Who after all is today speaking about the destruction of the Armenians?
sc-darkness
Profile Joined August 2017
856 Posts
December 01 2017 07:33 GMT
#18466
On December 01 2017 14:57 phar wrote:
Show nested quote +
On November 30 2017 17:15 Silvanel wrote:
My company has around 26000 employees dunno if its is large or small for You. Granted the recruiting scheme is different depending on location (so can be different say in German, USA or in India and i would say it most certainly is). Still it works fine for our location i think (Poland). The project i work currently in has around 600 engineers spread around the globe. For sure some of them are overqualified for their postion, some underqualified and some are exactly where they need to be. But i would say its more because of the size than recruiting scheme.


Sure, that's not small at all. How many engineers, like 10k, or are you more sales oriented? If you've got 10k eng you must be getting a lot of applicants beyond just referrals and some headhunters. And at that point someone has to be screening for the dishonest idiots... or else there's some sizeable number of eng there who can't actually write code...

Show nested quote +
On December 01 2017 03:59 sc-darkness wrote:
On November 30 2017 12:11 phar wrote:
On November 30 2017 05:22 sc-darkness wrote:
Ok, thank you for answers. Much appreciated! Despite studying some algorithms and data structures at university, I think I'll start reading Introductions to Algorithms in my free time. Here is the book: https://www.amazon.co.uk/Introduction-Algorithms-Thomas-H-Cormen-ebook/dp/B007CNRCAO/ref=sr_1_2?ie=UTF8&qid=1511986799&sr=8-2&keywords=introduction to algorithms

Has anyone read it? Any thoughts? People say it's really good.

That book is called CLR(S), it is the canonical algorithms text. If you are going to read one algorithms book, that is the one to read.


Could you recommend any chapters please? I have an interview at the beginning of January, and they may ask me about algorithms. They usually deal with office suite (kind of like Microsoft Word, Excel, etc). So I'm thinking data structures and string matching algorithms. Anything else? I doubt I'll read the entire book by then though. It's 1000+ pages. I could try to read as much as I can though.

Depends on where the interview is. If it's Amazon I would take care to not neglect graph algorithms lol.


If it's not, then what algorithms or chapters do you recommend based on what I mentioned?
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
Last Edited: 2017-12-01 08:40:24
December 01 2017 08:40 GMT
#18467
I would guess that its mostly engineers in my company. But its really hard to say since i dont know that much (only few) facilities outside the one i work in. Anyway i work for Harman www.harman.com if that helps. For Connected Services division to be precise.
Pathetic Greta hater.
TMG26
Profile Joined July 2012
Portugal2017 Posts
December 01 2017 08:57 GMT
#18468
On November 29 2017 02:40 Excludos wrote:
Show nested quote +
On November 29 2017 02:31 sc-darkness wrote:
I'd applied for a C++ job and I got test questions. Guess what! ANSI C questions instead. Yay! :D
I can manage it, it's just not expected. I feel way more comfortable with C++ though. I'm going to tell recruiter that as well.


Honestly I just don't get why people still bother with these tests. They show exactly nothing of what you're capable of beyond the basic "Yes, I know what a for loop is". I had a run in January where I applied for a bunch of jobs and needed to do 4 of these tests. 3 of them was so easy I finished them in half of the allotted time, and the last one was so damn badly explained I couldn't understand how to even get the input they were suppose to provide, so I just ended up winging it and, according to them, failed because my "score" wasn't high enough. Honestly seemed like they didn't even bother looking at the code itself. And none of them had the remotest connection to the jobs I actually applied for.

Yes, codewar type challenges can be fun, but they don't provide any reasonable idea of how someone actually functions in a job.



There are many recruiters and professionals complaining that a lot of gradutes can barely program. Those test are just a filter, so they don't have to spend 30 min talking to a guy that can't implement a fixzbuzz like problem.
Supporter of the situational Blink Dagger on Storm.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
December 01 2017 13:02 GMT
#18469
On December 01 2017 16:33 sc-darkness wrote:
Show nested quote +
On December 01 2017 14:57 phar wrote:
On November 30 2017 17:15 Silvanel wrote:
My company has around 26000 employees dunno if its is large or small for You. Granted the recruiting scheme is different depending on location (so can be different say in German, USA or in India and i would say it most certainly is). Still it works fine for our location i think (Poland). The project i work currently in has around 600 engineers spread around the globe. For sure some of them are overqualified for their postion, some underqualified and some are exactly where they need to be. But i would say its more because of the size than recruiting scheme.


Sure, that's not small at all. How many engineers, like 10k, or are you more sales oriented? If you've got 10k eng you must be getting a lot of applicants beyond just referrals and some headhunters. And at that point someone has to be screening for the dishonest idiots... or else there's some sizeable number of eng there who can't actually write code...

On December 01 2017 03:59 sc-darkness wrote:
On November 30 2017 12:11 phar wrote:
On November 30 2017 05:22 sc-darkness wrote:
Ok, thank you for answers. Much appreciated! Despite studying some algorithms and data structures at university, I think I'll start reading Introductions to Algorithms in my free time. Here is the book: https://www.amazon.co.uk/Introduction-Algorithms-Thomas-H-Cormen-ebook/dp/B007CNRCAO/ref=sr_1_2?ie=UTF8&qid=1511986799&sr=8-2&keywords=introduction to algorithms

Has anyone read it? Any thoughts? People say it's really good.

That book is called CLR(S), it is the canonical algorithms text. If you are going to read one algorithms book, that is the one to read.


Could you recommend any chapters please? I have an interview at the beginning of January, and they may ask me about algorithms. They usually deal with office suite (kind of like Microsoft Word, Excel, etc). So I'm thinking data structures and string matching algorithms. Anything else? I doubt I'll read the entire book by then though. It's 1000+ pages. I could try to read as much as I can though.

Depends on where the interview is. If it's Amazon I would take care to not neglect graph algorithms lol.


If it's not, then what algorithms or chapters do you recommend based on what I mentioned?


Go through all the chapters of sorting algorithms. The math is dry, I don't think following the precise complexity analysis is super important. But be able to write the algorithms on your own if you can, or at bare minimum know how all of them work well enough that you can likely replicate it on your own if you really try.

In regards to data structures, you should know what all of the basic ones are. You should know how to traverse them. You should have a decent grasp of their advantages and disadvantages. You should understand depth first search, breadth first search, pre-order, post-order, in-order. You should understand why a hash table works and at least know conceptually how you could make one.

You should know trees very well. In particular you need to know heaps, and search trees. If there is one data structure to study I think that it is trees.
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
December 01 2017 13:43 GMT
#18470
On December 01 2017 07:58 Acrofales wrote:
Show nested quote +
On December 01 2017 04:04 emperorchampion wrote:
On December 01 2017 01:23 Acrofales wrote:
Dumb question:

I have a stupid problem where I have to correct a whole load of stuff. And it's going to be fastest to do this with a long list of radio buttons where I can mark "right" "half right" or "wrong". However, I don't know exactly how many radio buttons I need beforehand because it's loaded dynamically from the database.

I have my code for loading this stuff in python, but wtf do I use to generate the UI? I was looking at guidata, but it seems to want a fixed number of items up front, rather than being able to add them at runtime.

Am I incredibly stupid to think a simple and fast way of doing this is by simply generating a webpage, hosting it with flask and then saving the answers back into the database on a form submission?


You can using tkinter, I did a similar thing using a grid and an ordered dict then iterating over the dict and adding items to the grid.

It will look something like:

Load names from database
For i, n in enumerate(names):
In col 0 row i, put the name
In col 1 row i, put the button

Then have a save button to read and write the data from the buttons


Sounds easier than using an HTML front-end. I'll give it a go. Thanks!


It should be easy once you get the hang of tkinter. Probably in total <50 lines.
TRUEESPORTS || your days as a respected member of team liquid are over
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-12-02 01:40:29
December 02 2017 01:35 GMT
#18471
Okay, I have a difficult problem I am trying to solve. Let's see if I can explain it properly.

I want to take a simple polygon. The polygon is determined by a series of points, which make up it's vertices. For simplicity of explanation, let's say a square.

Internal to the polygon (square), are points.

I want to take each point of the polygon, and I want to take the direction of line segments that are coming out of them, and consider them to be rays. So, in this case, 2 rays coming out from each corner of the square, 8 in all, which overlap with the line segments of the square.

I want to take these rays, and I want to rotate them INWARDS (for each point, it's rays rotate towards the other ray that comes off a given point). I will have all rays rotating at the same rate.

I am confident I can do all this. The problem is the next part.

I want to use these rays to "scan" for the points internal to the square. When a ray hit's a point inside the square, I want to be able to stop all rotations, mark that the point was found, and which ray found it. I also need as much precision as possible. I can't use something like rasterization because I will lose precision.

My question is, how the heck do i do this! In what method can I represent these lines as data, and monitor their interaction with euclidean space? Is there some technique in linear algebra that I can use to do this?

At this point the only option I can see is to do something like: rotate each ray some appropriately small portion of one degree, iterate over every point and see if the ray went through that point. If more than one ray went through a point (or a ray went through more than one point), backtrack if appropriate and take a smaller step. Repeat until you get it down to just one point (or multiple points along a single line).

This seems like a lot of work to be doing. I'd rather avoid it if there is a simpler way.

Is what I am asking for understandable?

Thanks!


edit(I guess I could slightly improve the above by recording all possible rays between points into a set beforehand (in the form of (origin,slope), and checking for when we've found a match. But that still seems suboptimal.)
Mr. Wiggles
Profile Blog Joined August 2010
Canada5894 Posts
December 02 2017 05:12 GMT
#18472
I think I'm a little confused about what exactly you're describing. It would help if you could give a more precise example of your problem (preferably with numbers?). From what you've written, it sounds like you want to find the smallest angles for which your 'rays' intersect with the interior points?

If that's the case, then I don't believe you need any simulation of rays or rotation. Instead, you could do something like the following, in pseudo-code:

(Disclaimer, my geometry is super rusty)

for each point p:
min_angle = 360
edge = null

for each vertex pair (a,b) in the polygon: # ab edge, assume clock-wise order
angle_1 = compute the angle between AB and AP vectors
angle_2 = compute the angle between BA and BP vectors

if 180 - angle_1 < min_angle:
min_angle = 180 - angle_1
edge = (a, b)

if 180 - angle_2 < min_angle:
min_angle = 180 - angle_2
edge = (b, a)

closest 'ray' to point p is given by edge, after rotating min_angle degrees


I think this is close to what you're trying to do? There might be some extra steps based on other problem constraints. Basically, we find the interior angles to all the points, and use that to find the 'ray' which will have to rotate the least to reach the point and the angle of rotation needed.

I'm sure there's a nicer algorithm for this, and I might also be completely misunderstanding you. Hope this helps.
you gotta dance
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
December 02 2017 07:23 GMT
#18473
Is this basically just computing the convex hull of a polygon? If so, then there are algorithms for that. What is your actual objective?
If you have a good reason to disagree with the above, please tell me. Thank you.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-12-02 13:25:52
December 02 2017 13:22 GMT
#18474
On December 02 2017 14:12 Mr. Wiggles wrote:
I think I'm a little confused about what exactly you're describing. It would help if you could give a more precise example of your problem (preferably with numbers?). From what you've written, it sounds like you want to find the smallest angles for which your 'rays' intersect with the interior points?

If that's the case, then I don't believe you need any simulation of rays or rotation. Instead, you could do something like the following, in pseudo-code:

(Disclaimer, my geometry is super rusty)

for each point p:
min_angle = 360
edge = null

for each vertex pair (a,b) in the polygon: # ab edge, assume clock-wise order
angle_1 = compute the angle between AB and AP vectors
angle_2 = compute the angle between BA and BP vectors

if 180 - angle_1 < min_angle:
min_angle = 180 - angle_1
edge = (a, b)

if 180 - angle_2 < min_angle:
min_angle = 180 - angle_2
edge = (b, a)

closest 'ray' to point p is given by edge, after rotating min_angle degrees


I think this is close to what you're trying to do? There might be some extra steps based on other problem constraints. Basically, we find the interior angles to all the points, and use that to find the 'ray' which will have to rotate the least to reach the point and the angle of rotation needed.

I'm sure there's a nicer algorithm for this, and I might also be completely misunderstanding you. Hope this helps.


nope, this is exactly right(though there are some added constraints, like you say), and I realized last night I could do it this way. The algorithm will also need to compare the angles of each "closest ray" after each outter for loop completes, since I only want the one smallest angle.

Maybe it would be easier to calculate differences in slope than differences in angle?



On December 02 2017 16:23 spinesheath wrote:
Is this basically just computing the convex hull of a polygon? If so, then there are algorithms for that. What is your actual objective?


Nope, the convex hull is the starting point. The objective is to tighten the convex hull into a polygon that iteratively includes more and more points. (I am playing around with TSP again).

I know this kind of strategy is common for TSP, but I wanted to play around with it myself.
shz
Profile Blog Joined October 2010
Germany2687 Posts
December 02 2017 21:52 GMT
#18475
On November 30 2017 18:11 Liebig wrote:
Advent of Code starts tomorrow.

Who's going to do it ?


Let's get a TL leaderboard going:

+ Show Spoiler +

http://adventofcode.com/2017/leaderboard/private

Code:
136507-44389d8e
Liquipedia
sc-darkness
Profile Joined August 2017
856 Posts
December 02 2017 22:03 GMT
#18476
Does anyone know how job adverts work when they say N+ years? Because if they say 3+ years, then they may as well have someone with 3 years work experience against someone with 10+.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
December 02 2017 22:41 GMT
#18477
From what I've heard it's a wishlist. When they say "must have 3+ years" that's ideal, but they will accept less if they don't get an ideal candidate. Generally they'd pick the more experienced person, but it depends on what they're looking for.

Does anyone know any way to convert ETH into CAD(or other denominations) easily? I am attracted to the possibility of easily transferring value with ETH, but it has problems if you want to hold on to it. It fluctuates, it is not understood by the public, etc. It seems easy to buy cryptocurrencies with fiat, but getting fiat back from the crypto seems much harder. I know tethers are a thing but then you still need to convert it into fiat from there.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Excludos
Profile Blog Joined April 2010
Norway8233 Posts
December 03 2017 01:03 GMT
#18478
On December 03 2017 06:52 shz wrote:
Show nested quote +
On November 30 2017 18:11 Liebig wrote:
Advent of Code starts tomorrow.

Who's going to do it ?


Let's get a TL leaderboard going:

+ Show Spoiler +

http://adventofcode.com/2017/leaderboard/private

Code:
136507-44389d8e


Joined..there's a whole two of us now!
Excludos
Profile Blog Joined April 2010
Norway8233 Posts
December 03 2017 01:05 GMT
#18479
On December 03 2017 07:03 sc-darkness wrote:
Does anyone know how job adverts work when they say N+ years? Because if they say 3+ years, then they may as well have someone with 3 years work experience against someone with 10+.


I've been to job interviews with much much less than 3+ years of experience. It's one of those "weed out the newbies" things, but if you have the right experience it can be worth more than many years of the wrong (Ie: If they're looking for a web designer/javascript your 1 year of experience might beat out someone with 5 years of backend c++ experience)
phar
Profile Joined August 2011
United States1080 Posts
December 03 2017 08:58 GMT
#18480
Agree with above post somewhere stating to start with sorting algos. Definitely a good starting spot (and if you can wrap your head around it, the Knuth book on sorting and searching algos complements clrs nicely). Also your original idea to do string algos is also good cus a lot of places ask such questions.

You wanna be pretty well rounded though. Have good working useful knowledge of graph, string, search, sorting algos. Nothing too fancy. Have good working knowledge of arrays/lists, graphs, hash map / dictionaries, heaps, queues & stacks, and then maybe some slightly more esoteric things like search trees, tries, dynamic programming algos. And be able to code problems using these approaches and structures, from scratch without any reference internet.

On December 03 2017 07:03 sc-darkness wrote:
Does anyone know how job adverts work when they say N+ years? Because if they say 3+ years, then they may as well have someone with 3 years work experience against someone with 10+.

Yea the correlation between what the job posting says and what is actually required is loose at best.

Eli TheComputerGuy on YouTube had a good video explaining it:

Who after all is today speaking about the destruction of the Armenians?
Prev 1 922 923 924 925 926 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 28m
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
Sea 55933
GuemChi 1095
Jaedong 483
BeSt 350
Larva 302
actioN 234
Mini 200
Sharp 106
Light 56
Soma 50
[ Show more ]
ToSsGirL 50
Backho 32
sorry 27
zelot 25
yabsab 20
Shine 15
ajuk12(nOOB) 15
soO 13
Bale 12
910 12
Rush 9
Free 8
Sacsri 7
NaDa 7
sSak 6
HiyA 6
Terrorterran 5
Dota 2
NeuroSwarm121
League of Legends
JimRising 447
Counter-Strike
m0e_tv764
shoxiejesuss735
olofmeister659
allub323
Super Smash Bros
Mew2King142
Other Games
summit1g7735
Liquid`RaSZi329
crisheroes307
Sick255
Organizations
Other Games
gamesdonequick578
Counter-Strike
PGL89
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• LUISG 17
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 5
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos638
• Stunt527
• HappyZerGling168
Upcoming Events
The PondCast
28m
KCM Race Survival
28m
WardiTV Winter Champion…
2h 28m
Classic vs Nicoract
herO vs YoungYakov
ByuN vs Gerald
Clem vs Krystianer
Replay Cast
14h 28m
Ultimate Battle
1d 2h
Light vs ZerO
WardiTV Winter Champion…
1d 2h
MaxPax vs Spirit
Rogue vs Bunny
Cure vs SHIN
Solar vs Zoun
Replay Cast
1d 14h
CranKy Ducklings
2 days
WardiTV Winter Champion…
2 days
Replay Cast
2 days
[ Show More ]
Sparkling Tuna Cup
3 days
WardiTV Winter Champion…
3 days
Replay Cast
3 days
Replay Cast
3 days
Monday Night Weeklies
4 days
OSC
4 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-03-04
PiG Sty Festival 7.0
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
Spring Cup 2026
WardiTV Winter 2026
Nations Cup 2026
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025

Upcoming

ASL Season 21: Qualifier #1
ASL Season 21: Qualifier #2
ASL Season 21
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
RSL Revival: Season 4
NationLESS Cup
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
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...

Disclosure: This page contains affiliate marketing links that support TLnet.

Advertising | Privacy Policy | Terms Of Use | Contact Us

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