Problem 203. fly fly away
Solution Stats
Problem Comments
Solution Comments
-
1 Comment
Flawed solution (same flaw as Solution 1327329).
-
1 Comment
This is an incorrect solution. For example, suppose dx = [0,1,0,-1], dy = [2,0,2,0], x = 1 and y = 5 (which is the same situation as test #1 but with a slightly different dy); then this code would return 'True' when in fact the correct answer would obviously be 'False'.
-
1 Comment
[Based on solution 1227987] Although this solution passes the test suite, it (and several others like it) is an incorrect solution. For example, suppose dx = [-1,-1,-1,2,-1,6], dy = [-1,-2,-3,1,1,-1], x = 53 and y = -71 (which is the same situation as test #5 but with a slightly different dy); then this code would return 'True' when in fact the correct answer is 'False'.
-
1 Comment
I still don't understand the scoring system I guess.
Seems odd to me that the commented solution had size 43 ... but doing extra computation reduced this solution to size 33.
(unless JIT is at the level to implicitly convert?)
-
1 Comment
Although this has passed the tests, I don't think it is correct, since it allows the fly to go backwards in time as well as forwards.
-
1 Comment
no bonus points for me :(
Problem Recent Solvers66
Suggested Problems
-
1595 Solvers
-
266 Solvers
-
554 Solvers
-
530 Solvers
-
Return elements unique to either input
732 Solvers
More from this Author38
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!