I didn't study computer science in college (at least, not at first), so I had to teach myself a lot of the fundamentals.
In my first programming job, I encountered an interesting situation where I wanted to iterate through a sorted array. Because I didn't know the standard library well enough, I didn't know that there were standard sorting routines. And I didn't know anything about standard algorithms. (In fact, I don't think I even knew what the word "algorithm" meant.)
So I got out a pen and a pad of paper and started brainstorming a generalizable technique for sorting an array, regardless of its initial state. After about 20 minutes, I came up with this little gem (in pseudocode):
function sort(array) {
boolean isSorted = false
while (!isSorted) {
isSorted = true
for (i = 1 .. array.length) {
if (array[i] < array[i - 1]) {
array.swap(i, i - 1)
isSorted= false
}
}
}
}
I was very proud of myself for discovering this little swapping trick.
I remember thinking about those guys who could solve a rubik's cube, regardless of its initial state, by following a series of steps. And that always amazed me. How could it be possible to solve all the millions of different rubik's cube permutations with only one simple formula???
To me, my sorting trick felt like a similar accomplishment.
A few weeks later, I was telling one of my buddies about this sorting algorithm I had invented, and he said "That's just a bubble sort! You didn't invent it, and it's one of the worst ways to sort an array, with n-squared performance!"
After he explained to me what he was talking about (I had also never heard of big-oh notation at that point), I was a little bit deflated, feeling a little less clever than when I had walked into the room.
But I distinctly remember the feeling of pride that I had at the "eureka" moment when I figured out the "swap-sort routine" (which, I think, is what I called it back then).