Viewing profile — hxhxhrra
hxhxhrra
HN member- Joined
- Wed, May 09, 2018, 9:52 AM UTC
- HN karma
- 67
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About hxhxhrra
No profile information was provided.
Recent public activity
-
comment
Comment #34706484
Maybe consider a different color palette. I have a red/green color blindness (like ~8% of the male population), and I can only barely differentiate the colors.
-
comment
Comment #33772914
I wouldn't call some cases of UB like overflowing a signed int or running into a dangling reference "actively pushing the compiler". I'm having a hard time believing you didn't eve…
-
comment
Comment #33772485
> I don't believe that it does. If the invalid arithmetic proceeds without crashing, and produces a value in the int32_t i variable, then that issue is settled. The subsequent stat…
-
comment
Comment #33770589
As others are pointing out, the C standard does allow this. There is no safe way to check for undefined behavior (UB) after it has happened, because the whole program is immediatel…
-
comment
Comment #22456175
Algorithm fib1 („Dynamic Programming without Memoization“) is just ordinary recursion and not dynamic programming.
-
comment
Comment #21372209
It is hard to overestimate the importance of the OEIS in enumerative combinatorics. I discovered the main results of my PhD thesis essentially as follows: 1. Find complicated const…
-
comment
Comment #21273612
This problem is called Chinese Postman Problem and can be solved in polynomial time using matching algorithms: https://en.m.wikipedia.org/wiki/Route_inspection_problem