14-Year-Old Wins International Programming Contest 141
marcog123 writes "The International Olympiad in Informatics was held earlier this week in Bulgaria. The IOI is a programming competition for high school learners up to 20 years of age that has a focus on problem solving and algorithms. It was won by 14-year-old Henadzi Karatkevich of Belarus (PDF, list of gold medalists), beating the world's top high school programmers, including 18- and 19-year-olds, to become the youngest winner in the IOI's 21-year history. Competition is really tough, with some countries taking months off school to concentrate only on IOI training. Henadzi first entered the IOI in 2006 when he was only 11 years old and won silver (missing gold by only six points). He won gold in 2007 and 2008. He has the opportunity to enter for the next three years; that is, unless he follows the path of Terence Tao, who won IMO gold at 12 and then went to university the following year. If he continues his current streak, he will easily surpass the current record of six IOI medals by South Africa's Bruce Merry."
Learn as hobby, not at school (Score:5, Interesting)
This just shows more about the fact that those who are great programmers are so not because of school, but because they have interest on it on their own. My own school was kind of a joke - everyone just played flash games during hours and did the least amount needed, while it was quite standard stuff too. I started programming at 8 years old, pretty much after I had learned to read (quick basic stuff obviously, but still). However atleast I had a nice teacher that understood my side aswell and let me do my own stuff like 3D game programming during the hours as long as I did the final test. Truth is most of people are quite non-intelligent about that stuff on schools, unless they do programming as a hobby.
And I can bet I was better at programming at 14 too then they were at 18 (as self conscious as that sounds). Fact is, if you're really interested on things and do it as hobby and just for fun, you will be even better than most adults are . You may lack some experience, but thats 50/50 good and bad. It's what enables you to do new things.
That being said, as this is international programming and problem analysis competition the others we're probably quite good aswell, so lots of kudos for Henadzi for winning it. You will have a good future.
Re:Learn as hobby, not at school (Score:5, Interesting)
The crux is that you really can't teach programming. A good programmer has an intuitive feel for how to solve a problem. You can't get that from lectures and books. I started programming early as well, and I did stuff in my first year of high school that many first year college CS students would struggle with. Don't get me wrong, in retrospect, it was pretty terrible code, but when push came to shove, it worked, and I got to walk into traps and discover concepts 5-6 years earlier than your average school-brewed programmer.
Getting back to the point, teachers can at best help you teach yourself programming. But even then, only so far.
In that sense, programming is a lot like art (even though I don't consider programming art, it's a craft at best.) You really can't learn how to be a painter from books either. They can set you in the right direction and open your mind to new possibilities, but in the end, practice is the only way to get anywhere.
Re:Learn as hobby, not at school (Score:5, Insightful)
The crux is that you really can't teach programming. A good programmer has an intuitive feel for how to solve a problem. You can't get that from lectures and books.
That's because books and lectures miss the most important aspect of it all: imagination. Programming is basically daydreaming with rules.
Re:Learn as hobby, not at school (Score:5, Insightful)
Re:Learn as hobby, not at school (Score:5, Insightful)
Mere words cannot describe how wrong you are. How are you going to write good code without having a mental image of your data structures? How do you understand someone elses code in the first place?
You seem to think imagination is something artsy people use to decide the color of the carpet. I say it's a fundamental component of learning, understanding and creating everything you associate with science.
Re:Learn as hobby, not at school (Score:4, Interesting)
I agree. I once worked on a project with a group of scientist. There was one guy there that everyone (even other scientists from prestigious universities) talked about with awe. He could keep a thousand details in his head. He developed his software quickly, it worked, and was mathematically correct. However, it was difficult to use or re-use his code. It just didn't have the organization or modularity needed. It takes artistic talent (for want of a better term) as well as mathematical ability to develop good software.
Re: (Score:2, Insightful)
Re: (Score:3, Insightful)
There was one guy there that everyone (even other scientists from prestigious universities) talked about with awe. He could keep a thousand details in his head. He developed his software quickly, it worked, and was mathematically correct. However, it was difficult to use or re-use his code. It just didn't have the organization or modularity needed. It takes artistic talent (for want of a better term) as well as mathematical ability to develop good software.
If it wasn't modular it wasn't good software. It m
Re: (Score:2)
I don't think he ever said that imagination was not necessary - his point was that it was necessary, just not sufficient. He specifically stated that you needed to be competent/talented or the books won't help at all. But if you are imaginative, it is necessary to be able to get your code polished to whatever point is useful - e.g. to work in all situations that will arise, to be easily maintainable by other people if other people will need to maintain it, etc. I think for these sorts of things you need exp
Re: (Score:2)
I think I'll have to settle for mere words in my rebuttal: not to split hairs, but it sounds like you're describing "intelligence", not "imagination"...at least, that's how I'd define it. By the definition you seem to be implying, imagination is necessary for not just science (as you note), but for creating everything: science, history, literature.... I suppose you could say that I was agreeing with you when I said that the books required "competent" learners. :)
By imagination, in this context, what I
Wrong. The source code... (Score:1)
Agreebut (Score:1)
Re: (Score:1)
Try writing some code with direct interfaces to the hardware.
The true programmer understands the how and why of their computers, the libraries that you use prevents you from knowing this, and make you no better than a script kiddy.
Re: (Score:2)
The true programmer understands the how and why of their computers, the libraries that you use prevents you from knowing this, and make you no better than a script kiddy.
True programmers don't break the abstractions the API provides without a damn good reason. They do, however, understand all the implications of using an API, including performance characteristics.
And optimizing for hardware is something the compiler should do. I don't even want to know what architecture or OS my code will run on.
Re: (Score:2)
I very much understand what engineering is. And I recognize that formal engineering isn't necessary to program. But I think the analogy holds. Or do you think people building rope bridges in the Amazon are practicing formal engineering? It's very much possible to build a bridge without engineering skills...and it's possible for it to be solid, and functional. Similarly, it's possible to program without any knowledge of engineering, and to produce software which works, and does the job. So, no, program
Re: (Score:2)
Your analogy is off. Let me restate it.
You don't need to have knowledge of engineering to engineer a bridge.
Likewise...
You don't need to have knowledge of programming to write a computer program.
Stop getting the wires crossed. Engineering != Programming. The two are completely orthogonal.
Re: (Score:2)
Re: (Score:2)
The crux is that you really can't teach programming.
I was going to qualify this, but you know, you nailed it. In programming, beyond your basic loops and syntax, is a completely unique problem, and you are probably the only person in the universe who is ever going to encounter it. What you have to do is start figuring out how to solve problems.
Now, a teacher can help get you trained for solving problems, by giving practice problems and walking students through the frustration of solving them, but ultimately, a programmer has to be able to diagnose and crea
Re: (Score:2)
Pardon me, but anytime you want to express an coding idea from one person to another, anytime you make an API that must then be understood by another, you are in the realms of art, because it is precisely the beauty of a system that (should!) drive you to use it.
Beauty is a way of judging survival in people as it is in code.
Re: (Score:2)
Hi, commerical artist and occasional coder here.
Pardon me, but anytime you want to express an coding idea from one person to another, anytime you make an API that must then be understood by another, you are in the realms of art
It's an interesting thought, but it sounds more like you're describing "elegance" or "inspiration." A lot of jobs in the information age require a suceptibility to inspriation and original thinking, thought we can take it too far sometimes. When you get a sandwich at Subway, it's made by someone who's technically called a "sandwich artist" after all. I'm sensitive to people's need for creative recognition, but I'm not sure I'd go so far as to call the guy m
Re: (Score:1)
Coming from the design world (product, exhibit, and interface design,) which are definitely crafts but not art, I'd take exception with you both (TCPF and Iluvcapra) to varying extents. Contrary to how many see it, art is not centrally about "communication." I think most artists would agree that their art is for themselves and that i
Re: (Score:1)
Re: (Score:2)
Contrary to how many see it, art is not centrally about "communication."
I'm not sure you've completely explicated this, because...
As soon as it becomes about communicating a message, producing multiple copies, making money, etc.
This is a non sequitir, it does not follow that the act of communication is tantamount to commerce. They are completely different things, there's a relationship but you're implying that any artist who is trying to communicate a message is simply prostituting himself for economic gain, or that the only true art is art that is a pure expression of the self. This is pretty contentious, particularly for folks who remix other people's works, and for peo
Re:Learn as hobby, not at school (Score:5, Insightful)
Computer science is not programming. It's an area of mathematics. API design is software engineering, not computer science.
Re: (Score:3, Informative)
Re: (Score:2)
Re: (Score:1, Interesting)
Talented and driven individuals were responsible for Google search, Photoshop, Linux, the Amiga home computer and thousands of other high quality products.
Your turn. Name some quality product built by merely "competent" programmers working in a corporate environment.
Re: (Score:3, Informative)
The crux is that you really can't teach programming. A good programmer has an intuitive feel for how to solve a problem. You can't get that from lectures and books.
You can kinda sorta, but you're still missing something. You have to choose your books carefully.
http://www.amazon.com/Elements-Programming-Style-Brian-Kernighan/dp/0070342075 [amazon.com]
http://www.amazon.com/Psychology-Computer-Programming-Silver-Anniversary/dp/0932633420 [amazon.com]
http://www.amazon.com/Mythical-Man-Month-Software-Engineering-Anniversary/dp/0201835959 [amazon.com]
programming is a lot like art
Very much so. Those with a passion for it always rise to the top. (I know I'm quoting you out of context, you were right before you added in all the weasel lang
Re: (Score:2)
I disagree. Programming is both a theoretical and a practical skill. While you can learn the theoretical part from books, you can not learn the practical part that way.
Re: (Score:1)
Likewise, you can take code in the book and tinker with it. Reuse concepts until you understand it... In the end, you will be able to read code, Mimic the code, and event
Re: (Score:1)
They can't even give correct change from a pounder...
so they will plonk down a program to do it on their Android phone in an instant.
No, i REFUSE to say iPhone...queue up a large and menacing Apple high up in a tree, poised to fall on to me and smother me with gravity-laden but no less fruity court injunctions...
Re: (Score:2, Interesting)
There is an interesting article here [joelonsoftware.com] which holds up pointers and recursion as two things in programming that a lot of people never really understand.
Re: (Score:1)
Sadly, I believe that article is quite out of date. Pointers and recursion are so passé to most IT
I think today's programmers are said to be horribly out of it when they don't know how to apply the Distributed Observer Pattern to RESTful business logic as a ROA with declarative state transformation rules.
I'm such a useless old fart to today's programming requirements that I'll content myself with some lowly kernel hacking, SAT solver tuning and code optimization.
Re: (Score:1)
$ ed parentpost
474
1
Sadly, I believe that article is quite out of date. Pointers and recursion are so passé to most IT
s/most/current/
s/$/./
1
Sadly, I believe that article is quite out of date. Pointers and recursion are so passé to current IT
wq
478
$
Re: (Score:1)
Becouse I can bet my ass that it's the complete oposite. Just becouse you learned all programming by yourself and your school sucked doesn't mean this guys programming education did. First of all, when you're young programmer you're probably a lot more intrested in WHAT you can make the programs do rather than HOW to do it efficiently/quickly. B
Re: (Score:2)
He is 14 years old. There's no school in world that teaches advanced programming and problem solving at that age. Hell, even the math at that age is quite standard and easy. It's obvious he learned it by motivation, not from schools.
Re: (Score:3, Insightful)
This goes quite a bit beyond "schools", to be sure. But if you think competitors in these ev
Re: (Score:2)
Competition is really tough, with some countries taking months off school to concentrate only on IOI training.
I think that implies there is more to this than self-motivation and there *are* specialized schools for this stuff for kids that age.
Re: (Score:2)
A web developer or a functional programmer wouldn't stand a chance here as normal programming only in rare cases involves advanced algoritms like maximum bipartite matchings, maximul flow or other graph related algorithms.
Functional programmers will stand a better chance in these competitions. It is arguably easier to implement graph algorithms in functional programming languages than in imperative programming languages. There are proportionally more functional programmers who have a firm grasp of algorithm design and implementation than programmers who have not used functional programming languages.
Re: (Score:2)
Those Bulgarians! (Score:2)
F**king Bulgarians **#(_Q@_&$*(@#_@....
Re: (Score:2)
If this is actually a serious inquiry, then the post was a joke - as in the type of locker room humor when anyone, or group, aces something, one responds with f**king (fill in the blank) #*(D**$&$^#
Re: (Score:2)
That is so mistaken it is hard to know where to begin addressing it. Personal interest will provide motivation to learn. That's it. Period. End of story. Don't confuse desire with ability - they aren't the same thing at all. After that it is about learning. One of the things you learn is problem solving approaches. This is fundamentally no different than if the subject was, for example, calculus. You learn logic (in the formal and colloquial senses of the word). You learn how other people have already solve
Ah, great for us! (Score:5, Funny)
Perhaps he can fix slashdot
Am I missing something? (Score:2, Insightful)
"It was won by 14-year-old Henadzi Karatkevich [...] to become the youngest winner in the IOI's 21-year history. [...] Henadzi first entered the IOI in 2006 when he was only 11 years old and won silver (missing gold by only six points). He won gold in 2007 and 2008."
Wasn't he younger when he won in 2007?
Re:Am I missing something? (Score:5, Informative)
Re: (Score:2)
Re:Am I missing something? (Score:4, Informative)
From the Wikipedia article:
"The top 50% of the contestants are awarded medals, such that the relative number of gold : silver : bronze : no medal is approximately 1:2:3:6 (thus 1/12 of the contestants get a gold medal)."
That's curious (Score:5, Interesting)
Re: (Score:1)
We make with C, no problem.
Re: (Score:2)
Yes! I look forward to him winning The International Obfuscated C Code Contest [ioccc.org]. Now THAT's a real challenge for any programmer. And so much more fun for the spectators.
Re: (Score:2)
If you look at the history of IOI winners (especially multiple winners, found at the Wikipedia [wikipedia.org] entry, most of them originate from former Soviet republics and Soviet-aligned countries (i.e. Eastern Europe). I currently fail to provide an adequate explanation for this phenomenon: yes, there are plenty of talented programmers in Russia, but as far as I can tell, software industry per se is virtually non-existent there (at least compared to the US).
My hypothesis is that before the Soviet fell, there really wasn't a lot of personal computer technology available to Vladimir Sixpack. And that was only some 20 years ago, so the current generation of former Soviet adolescents are among the first to have grown up with computers.
Re:That's curious (Score:5, Informative)
Actually (as a citizen of Czech Republic, former Eastern block state), I think there were several factors:
1. Communist regime actively encouraged smart people to work in mathematics, technology and natural science fields. When I was in 6th grade, I went to several hobby groups (organized by the local communist youth organization) - one dealing with natural sciences and second dealing with electronics. While such clubs exist today too, the participation is not so much enforced on the parents.
2. Today, you can buy almost anything in the shop. Back then, you couldn't. It was natural for people to know how to repair various things, and experimentation with electronics (and later computers) was very common among young people.
3. Life in communist regime was _extremely_ boring. Doing any technical hobby was a way to escape this boring reality.
Having a technical hobby is much easier now, because you have specialized shops that will sell you anything you need (which weren't the case at all back then), but much less people actually do it (there is also so much of other stuff to do to enjoy life).
By the way, I know Martin Mares (one of the frequent winners) personally from the high school - boy, he was and is smart! He could program in assembler like someone would write a letter, and talk to me about differential equations in the meantime. Still, I don't think IOI is so difficult as IOM, so the comparison with Terence Tao doesn't really hold water that well.
Re: (Score:3, Interesting)
Communist regime actively encouraged smart people to work in mathematics, technology and natural science fields.
It is mostly that. Technical education, especially in hard sciences, was always superior in the USSR (can't say about the rest of the Bloc, but I'd imagine it was about the same). It is not quite on the same level now, but it's still strong. There are many specialized "advanced schools" which teach some pretty complicated math in final school years (in the one I studied in, we did path integrals, for example - that was in late 90s).
It also helps that those schools are free, too - so long as you qualify. End
Re: (Score:3, Interesting)
Absolutely. That's a common thread with geniuses who achieve a lot in life - not only are they born with the intellectual horsepower but they al
Re: (Score:2)
Well, lacking access to hardware and barely getting some doesn't look like a viable explanation, now does it? Otherwise, the OLPC project would have generated a tremendous influx of Peruvian and Congolese software engineers, had it succeeded :P. Where is no or little software industry and no advanced CS research departments, there is nobody to teach the kids.
P.S. Actually, USSR (as opposed to modern Russia) had some pretty decent computer industry for a long while. Until they began copying American technol
Re: (Score:2)
Well it could be because, as far as I can tell, this meaningless high school contest is held in Bulgaria, which is within in the eastern block. It doesn't take much to get there from Eastern Europe and I think you'd find that kids from the region make up most of the competition.
TFA seems to also indicate that the kid who wins generally takes time off of school to do nothing but prepare for this thing. Generally speaking, only backwater countries who want anyone to remember they actually exist allow this so
Re:That's curious (Score:4, Informative)
Similarly, most countries do put a significant amount of effort into the selection and training of the teams (here's the US training organisation's site, for example [uwp.edu]). While the exact amount of effort varies, it's still a fair time contribution, even in the US. Luckily, the prestige of the event tends to offset any minor issues it causes in other areas of the student's study.
Re: (Score:2)
For the record, the winners of the ones held in Wisconsin (2003) and Mexico (2006) were from Korea and Poland, respectively.
I doubt many teachers would approve of having a kid postpone high school for something like this?
I've attended both American and Easter European high schools - trust me, you wouldn't be missing much by skipping a couple of years of the America
Re: (Score:2)
I'd think it was bullshit even if it was one by the US every year, I thought it was bullshit before I even read the kids name. The fact that it was held in Wisconsin when I was actually in Wisconsin in a university computer science degree program and I've never heard of it before is a fair indication that it's probably not considered all that important. The fact that they held it at UW parkside is another. The UW system has about 15 schools, and parkside is just about the smallest and least prestigious of t
Re: (Score:2)
The fact that it was held in Wisconsin when I was actually in Wisconsin in a university computer science degree program and I've never heard of it before is a fair indication that it's probably not considered all that important.
Because it is not a sports event. I was on an international chemistry olympiad team that won 4 gold medals, and only 1 newspaper bothered to puta short notice about this. High school olympiads don't get much media attention.
It's an informatics spelling bee. The kid may be brilliant, he may be nothing. He may go on to invent something absolutely amazing, he may end up flipping burgers for the rest of his life. None of these contests are ever solid indicators of future success.
No, they are not 'spelling bees'. Have you even looked at any of the problems? I am estimating that 90% of employed programmers would not be able to solve some of them.
Therefor a country which really wants to prove that it's not a completely inconsequential backwater or for whom having a winner of something like this would mean something to the general citizenry is likely to approve it are likely to bother.
Your vision is that participation in the international olympiads requires government dispensation from school? No, it on
Re: (Score:2)
No prejudice. The OP pointed out a statistical anomaly which isn't backed up by external evidence(there aren't a disproportionately high number of Eastern Europeans in any other area of IT that I know of). I fully believe that these kids are probably fairly smart and were definitely the best at whatever the competition actually tested(whether that's informatics or not). I also know that a lot of times, these sorts of international prizes go to the country which is willing to dedicate the most resources to w
Re:That's curious (Score:5, Interesting)
Teachers in these countries were expected to be subject matter experts at all levels of instruction, and not just yahoos with lesson plans and an inability to see multiple solutions to a problem (I am speaking from my personal experience with the American public education system here. The fundamental difference comes down to teaching how to find methods to approach and solve different problems vs teaching a method to solve a single problem and requiring little or no understanding of the underlying concepts at play. At least so I am told. It does explain some things.
The descendants of people in this system (I hear at least in Romania the schools are not what they used to be) are reaping the benefits, and over here in the USA kids are worried about being safe in school, getting shot, or being ostracized by their peers for somehow being smart or trying hard (and being punished by the system for the same).
My 2 cents.
Re: (Score:2)
Yep, that's the genius of our system. We see what you were saying, so we exploit the elevated brainpower of those poor foreigners b
Re: (Score:2)
As a Romanian, I can say this is perfectly true.
Education used to be to very high standards, especially in "hard" sciences. As a side-note, we never had the misconceptions that girls are not good at maths and as a result I recall that in highschool the top 5 students in maths were all girls; us boys had a chance to compete in physics and chemistry though.
The system had one flaw however, in that it emphasized theory instead of practical implementation.
Anyway, the whole system has gone downhill lately; in the
Re: (Score:2)
What's also worth mentioning however, is that the quality of education in some of these post-communist countries has now plummeted - I was in the Ukraine a year or so ago and the stories of the quality of 'university' education there are shocking (in one computer science paper the entire 'assessment' for the paper was to translate parts of a computer science textbook from english to ukrainian so the professor could publish it under his name and get recognition for that .... which meant that the students bec
Re: (Score:2)
Preparation is everything.
I've been to the ACM programming contests a couple of times. While we (two physics students and myself a math student, we easily eliminated the CS students in the local university qualifying round) were doing somewhat ok, we suffered from lack of preparation (which basically consisted of bringing along a copy of Sedgewick's "Algorithms in C"). The other teams (most notably the St. Petersburg and other eastern european teams) had coaches, months of preparation behind them and brough
Re: (Score:1)
Re: (Score:2, Funny)
Re: (Score:2)
I got a laugh out of it, but does the converse really work? E.g. elsewhere, do "you program the state"?
Re: (Score:2)
You're very wrong. Software industry is alive and well in Russia and ex-Soviet Bloc countries. It's not very visible because:
1) Most of software companies work on outsourced projects. You might be using software developed in Russia and don't know about it (examples: recent versions of Microsoft Flight Simulator, Heroes V, etc.)
2) A significant part of software companies produce software for domestic consumption.
3) ex-Soviet bloc was late on software development scene.
4) A great many ex-Soviet programmers em
Re: (Score:1)
We outsource to Russia at my office.
India probably has one of the most active software industries out there, but how many major Indian software products do you use on a daily basis? (Indian CEOs and branch offices don't count) If you're a global company, you tend to make the USA your HQ. It just makes sense given the dominance of the USA stock exchanges.
Also, there's a reason why Kaspersky doesn't have trouble hiring AV developers.
Re: (Score:2)
Well... we, Slavs, rock when it comes to logical thinking ;).
Re: (Score:2)
yes, there are plenty of talented programmers in Russia, but as far as I can tell, software industry per se is virtually non-existent there (at least compared to the US).
Remember that 95% of all code never leaves the organization it was written in. You may not know any commercial software products from Russia, but there's definitely a lot of in-house programming going on.
Programming practice (Score:2, Informative)
If you're interested in programming contests, you might enjoy the USACO programming contest.
http://ace.delos.com/usacogate [delos.com]
My problem with most contests is that the material is too difficult. I did the first exercise and haven't attempted the second yet.
Re: (Score:1)
If the difficulty was too low, then everyone would be successful. You couldn't have real winners
And would have to rely on some arbitrary measure to declare a winner (such as how many milliseconds it took the program to run, time to completion, or fewest spelling errors in the source code).
Re: (Score:1)
My point is that even with all my basics down, how do you become a better programmer?
Most programming exercises I have no idea where to begin.
Re: (Score:2)
I haven't specifically looked at the USACO problems, but the IOI isn't about programming so much as algorithm design. People who do well in it are likely to be capable of getting a PhD in computer science.
Re: (Score:2)
You know, that has to be the worst website design I've seen in a while. It's actually a lot like the websites I used to make when I was a kid and into programming them by hand, I mean does nobody there look at this thing and go "My god, that's ugly!"?. I suppose it is fine functionally, but frames haven't been a good idea from a design perspective since the 90's, and the font choice and color choice are horrible.
I mean, come on people, is it really that hard to have someone with an eye for good design loo
Re:Programming practice (Score:5, Insightful)
Did you make a typo here? I think you meant 'this website'. And we know that. We've been complaining about Slashdot for about forever.
Umm.. it's a high-school contest (Score:5, Insightful)
Who do you expect to win it, a 30 year old? Most High-School students are between 13 and 18 years of age.
I don't see it as extroardinary news, that a 14-year-old one won an international contest among students around that age range.
It would be far more interesting if a 14-year-old won an international contest whose participants included college students studying CS at an advanced level :)
Re: (Score:2)
Because it has never happened before? You do realize that an 18 year old is 30% older than a 14 year old, and that entire 30% is in the higher developement - the stuff like programming.
Would you not be surprised that an engineer fresh out of school is a better engineer than all the other engineers at the firm that hired him? Of course you would. Raw talent usually means you're better than the worst to start with, experience counts for a lot and it takes both to be the best. Being young and having a lot
Re: (Score:1)
Because it has never happened before? You do realize that an 18 year old is 30% older than a 14 year old, and that entire 30% is in the higher developement - the stuff like programming.
A 14 year old is 20% younger than an 18 year old, not 30%. The proportional difference is not a fair means comparison. There are many 14 year olds who are more developed than most 18 year olds, and they would be the ones to get entered into contests like this one.
Why? Most of them are shit, and he'd probably beat all
Re: (Score:1)
14 is 22% younger than 18 (it's 22% of 18).
18 is 29% older than 14 (it's 29% of 14).
Re: (Score:2)
14 is 22% younger than 18 (it's 22% of 18).
18 is 29% older than 14 (it's 29% of 14).
14 is 22% younger than 18 (it's approximately (100-22)% of 18).
18 is 29% older than 14 (it's approximately (100+29)% of 14).
Silly.
Re: (Score:2)
I believe the winner competes under the handle of Tourist on TopCoder. He's ranked 14th currently (among competitors of all ages). There is exactly one North American ranked higher than him (ICPC legend and generally amazing Derek Kisman).
And who do I expect to win IOI? An 18 or 19 year old. This is a very prestigious competition, and many of the competitors have been training hard for years. 14 to 18 is a significant age gap and many of his competitors are amazing prodigies in their own right. I find
Re: (Score:1)
It would be far more interesting if a 14-year-old won an international contest whose participants included college students studying CS at an advanced level :)
He *has* done this before. He was the top individual in this year's IPSC [ipsc.ksp.sk], which is open to everyone. He's also had an excellent record recently in TopCoder [topcoder.com], which is also open to everyone: he's currently ranked 14th [topcoder.com] and is by far the youngest in the top 50. Unfortunately all of the major open international contests are restricted to those 18 and older.
Re: (Score:1)
How many 14 year olds are the captain of their high school varsity team? That might only be local news if it happened, but slashdot is specialized news too.
Re: (Score:1)
Actually, there is something strangely notable about this:
-How many hours a day are you in front of the computer?
- Not more than three to four. I like playing football and table tennis, so I try to find time for sports as well.
How many geeks who have developed advanced programming skills only ever spend at most 3 or 4 hours a day at a keyboard programming?
Re: (Score:2, Funny)
Re: (Score:2)
Gold medals are awarded to the top 5-10% of participants, but there is only one winner.
I'm happy for the lad, however... (Score:5, Funny)
Big. Fucking. Deal. (Score:1, Troll)
Re: (Score:2)
Those who can, do. Those who can't, rationalise.
Life's too short NOT to do this stuff.
nough said (Score:1)
"Hackers should be judged by their hacking, not criteria such as degrees, age, race, or position." -- Hacker Ethic
Where can I see the contest's questions? (Score:1)
Thanks!
Re: (Score:2, Informative)
The problems are right there.
shouldn't you be elsewhere? (Score:1)
So what... (Score:1)
In 1985 most of us could hack out any tune of a game on the C64 at 12, and that was in 6502 assembler.
In 1987 we had moved to 68000 assembler doing demoes and coding games on the Amiga and Atari ST.
Give kids a turtle today, and what do we get? Lines....
Re: (Score:2)
In other words, American kids are smart enough not to be too smart.