Viewing profile — mhath
mhath
HN member- Joined
- Sat, Nov 30, 2013, 2:05 PM UTC
- HN karma
- 6
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About mhath
[ my public key: https://keybase.io/michaelhatherly; my proof: https://keybase.io/michaelhatherly/sigs/hfthQAEjRT4osZpg4mvw3PLayF2gcBhrt9w2y_aR448 ]
Recent public activity
-
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…
-
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.
-
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 (…