vote up 2 vote down star

I'm interested in the ones that gives most pleasure when you solve it. Please give a concrete examples.

flag
Sounds like you answered your own question? – DMKing Feb 6 at 17:17
Seems like a broad discussion question – Mark Rogers Feb 6 at 17:22
This should probably be set to community wiki. – eleven81 Feb 6 at 17:23
The answer I gave is generic, while I ask about specific problems and it is about me while I asked about your favorites. – Łukasz Lew Feb 6 at 17:25
This is duplicate: stackoverflow.com/questions/90715/… – Niyaz Feb 6 at 17:35
show 1 more comment

closed as not programming related by ChrisW, Shog9, Sam Hasler, Mehrdad Afshari Feb 6 at 17:26

7 Answers

vote up 0 vote down

It would have to be machine learning. Those functions take some work to get right and can be highly useful for learning to do things that traditionally are things left for humans. Like a function that can find peaks in a spectrum. A non learning function would find some but not all, or way more then there actually are. With a machine learning function one can say this is not a peak or this is a peak and it will tune its parameters to better fit what is and is not a peak.

link|flag
Do you have anything specific in mind? – Łukasz Lew Feb 6 at 17:35
I am playing with support vector machines and bayesian classifiers to serve as teachable peak recognition and fitting routines for data analysis for my physics Ph.D. research. – James Matta Feb 7 at 21:13
vote up 4 vote down

It's not a single puzzle, but I've really been enjoying my time spent on the ones from Project Euler.

So far easily my favorite has been problem 15, as I ended up spending several hours deriving the formula to solve it and had some cool realizations and learned quite a bit in the process (I wont give anything away here;)).


Starting in the top left corner of a 2×2 grid, there are 6 routes (without backtracking) to the bottom right corner (See link for picture).

How many routes are there through a 20×20 grid?

link|flag
I had originally posted the solution, as I didn't realize it was an actual site where you post solutions... incorrectly mind you. However, I have solved the problem using an O(n^2) solution. The O(1) solution is pretty nice. ;) – Jason Lepack Feb 8 at 23:10
vote up 0 vote down

I enjoy the problems here. There's always a new algorithm to be learned (or re-learned).

http://www.spoj.pl/

link|flag
vote up 0 vote down

I love to hunt bugs. It's a bit like being Sherlock Holmes: You collect clues, follow hints, interview the suspects and finally nail it down. Almost nothing else in my job gives me the same kind of satisfaction when finding and fixing a bug.

link|flag
high level bugs are fun. low level bugs are the bane of my existance. – Dustin Getz Feb 6 at 17:52
vote up 0 vote down

Anything that actually forces me to learn something new. Also, I don't really enjoy traditional puzzle, I like solving puzzling situations in real life code. Something that would make you sweat for couple of hours or even days before that "Ah-ha!" moment.

link|flag
vote up 0 vote down

1 off situations.
It's always gratifying to realize you nailed it.

link|flag
vote up 1 vote down

Recursive functions. I think there is more thought per line of code than anything else that I do (regularly).

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.