Live data from Hacker News

Viewing profile — hqm42

hqm42

HN member
Joined
Thu, Feb 21, 2013, 5:07 PM UTC
HN karma
2
Public activity
2 items

About hqm42

No profile information was provided.

Recent public activity

  1. comment
    Comment #6570737

    Revision 22 revealed that something went terribly wrong...

  2. comment
    Comment #5258549

    LinkedList.prototype.reverse = function () { var rev = function(e,tail) { if (!e) { return tail; } else { var next = e.next; e.next = tail; return rev(next, e); } }; this.head = re…