Viewing profile — hqm42
hqm42
HN member- Joined
- Thu, Feb 21, 2013, 5:07 PM UTC
- HN karma
- 2
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About hqm42
No profile information was provided.
Recent public activity
-
comment
Comment #6570737
Revision 22 revealed that something went terribly wrong...
-
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…