Viewing profile — newbye3
newbye3
HN member- Joined
- Sat, May 21, 2022, 8:12 AM UTC
- HN karma
- 26
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About newbye3
No profile information was provided.
Recent public activity
-
comment
Comment #31666607
https://news.ycombinator.com/item?id=26708148 The service is only free until you reach their limit. The post has 166 comments.
-
comment
Comment #31665654
I am 60 years old and as a person always learning I have accumulated a huge stack of knowledge and I think my mind is in a very good shape so I still can learn new things quickly. …
-
comment
Comment #31550395
My first impression is that a better algorithm is obtained with one vector for each hash function, but now I am lazy to do the math.
-
comment
Comment #31539097
Don't hire me, this version cons a lot )): (defun palindrome(str) (string= str (coerce (reverse (coerce str 'list)) 'string))
-
comment
Comment #31515605
Perhaps this is the kind of problem in which a macro system, like that in common lisp, allow you to solve the problem paying the prize in a little more compilation time but not in …
-
story
Ask HN: Is there a mountain pick view concept in Reinforcement Learning?
When I am in the wild forest I climb to a mountain to have a better view of the landscape to choose the best path. I wonder if there is a similar concept in RL. Intuitively, a moun…
-
comment
Comment #31488926
At first sight, in the examples: inc1(7) pure, inc2(8) impure, what's the meaning of inc2? (some kind of increment?) Then in the definion of map there is an argument function f, an…
-
comment
Comment #31488808
in prolog the definition of path is something like: path(x,y) := edge(x,y). path(x,z) := edge(x,y),path(y,z). So to me it seems a little strange the definition of path in datalog f…
- comment
-
comment
Comment #31456192
If you are using integers to represent subsets then int.bit_count is the number of elements of the set. There is a machine instruction to count the number of ones in the binary rep…