52,497 reputation
93590
bio website il.linkedin.com/pub/…
location Israel
age 27
visits member for 2 years, 4 months
seen 16 hours ago
stats profile views 5,198

I am MSc. student in the Technion - Israel Institute of Technology. I am interested in automata, graph algorithms, data structures, theory of computation, artificial intelligence (and especially Machine Learning) and OOP languages, especially Java.

I am not a native English speaker and encourage everyone to fix any language mistakes I make.

P.S. The puppy is my Golden-Retriever named Louis, and yes - I had to hold a candy in order to take this picture :)


2d
awarded  Famous Question
May
18
awarded  Good Answer
May
17
awarded  Guru
May
15
comment Determine if a number only apears once in an array
He already suggested O(nlogn) solution - sort and iterate.
May
15
comment Determine if a number only apears once in an array
Also, assuming ints in java are 32 bits - radix sort gives you O(d*n) where d=32, so O(n). Though arrays are limited to <2^32 size, so logn is also smaller then 32. No practical gain here
May
15
comment Determine if a number only apears once in an array
This smells a LOT like a variation of element distinctness problem (but reversed) which is solved in O(nlogn) without hashing.
May
15
comment Writing an algorithm to decide whether a target number can be reached with a set of other numbers and specific operators?
@lukech This is the P vs NP Problem, which is still open (and got 1,000,000$ bounty on it). Creating such an algorithm (in polynomial time) will prove P=NP. Most researchers believe however that P!=NP, so if this is the case - such algorithm does not exist.
May
15
revised Writing an algorithm to decide whether a target number can be reached with a set of other numbers and specific operators?
added 126 characters in body
May
15
answered Writing an algorithm to decide whether a target number can be reached with a set of other numbers and specific operators?
May
14
revised Why did this prime factorisation algorithm give the correct answer even though there is a flaw?
deleted 12 characters in body
May
14
comment Why did this prime factorisation algorithm give the correct answer even though there is a flaw?
@jwpat7 Thanks for the correction, fixed.
May
14
comment Algorithm to determine the highest and lowest possible finishing position of a team in a league
Yea, It is indeed interesting! (upvoted). my intuition goes with dynamic programming, but cannot see how yet. Will try to give it some more thought later on today if no good answer will pop up.
May
14
comment Algorithm to determine the highest and lowest possible finishing position of a team in a league
For just one round brute force should handle it nicely, since there are only 3^10 possible outcomes. It is easy to see however that it will quickly get out of hand if you try to do it for more rounds.
May
14
comment Why did this prime factorisation algorithm give the correct answer even though there is a flaw?
@Thomash I disagree. For example for 27 - it will give you the answer 9, which is not a prime factor. I do agree that by solving issue (3), this becomes a none-issue.
May
14
answered Why did this prime factorisation algorithm give the correct answer even though there is a flaw?
May
14
comment Why did this prime factorisation algorithm give the correct answer even though there is a flaw?
@xabhisan Well, even a broken clock shows the correct time twice a day. So does this algorithm.
May
14
comment Why did this prime factorisation algorithm give the correct answer even though there is a flaw?
There are more issues with the code: (1) 2 is a prime number. (2) What about factors that should be accounted twice (for example for the number 27, the prime number 3 should be counted 3 times)
May
12
comment Longest path on a grid, without revisiting grid cells
Are there obstacles on the grid? Note that for general graphs this is longest-path problem, which is NP-Complete
May
11
comment Finding the median in B+ tree
The keys are also stored in the leaves. Think of a B+ tree as a set or a multiset, all the keys are stored in the leaves. The internal nodes hold only part of the keys in order to navigate to the leaves. Note that there is no key in the set that does not exist in all leaves (i.e. an item is in the set represented by the B+ tree if and only if it exists in one of the tree's leaves).
May
11
answered Finding the median in B+ tree