Live data from Hacker News

Viewing profile — mhath

mhath

HN member
Joined
Sat, Nov 30, 2013, 2:05 PM UTC
HN karma
6
Public activity
3 items

About mhath

[ my public key: https://keybase.io/michaelhatherly; my proof: https://keybase.io/michaelhatherly/sigs/hfthQAEjRT4osZpg4mvw3PLayF2gcBhrt9w2y_aR448 ]

Recent public activity

  1. comment
    Comment #29414498

    PumasAI | Multiple roles | REMOTE | Full-time | https://pumas.ai Pumas-AI started two years ago with a mission to modernize and improve the efficiency of predictive health analytic…

  2. comment
    Comment #6823417

    Of course halving the range checked would also be an improvement. My own improvement was meant only to reduce the memory usage of antimora's code.

  3. comment
    Comment #6823207

    You can avoid allocating so much memory by changing a::Int64 = ((a%2==0) ? a : 3*a+1)/2 to a = ((a%2 == 0) ? a : 3a+1) >> 1 or a = div((a%2 == 0) ? a : 3a+1, 2) for me this gives (…