given a number of consecutive moves of queen, check for their validity based on their previous position.... but remember if u get an invalid move - u need check for the next move's validity based on the last valid position.....
- x={'Qd1','Qd5','Qf7','Qa8','Qg8'}
- y=[1,1,1,0,1]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers17
Suggested Problems
-
Extract leading non-zero digit
2244 Solvers
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2536 Solvers
-
Matrix indexing with two vectors of indices
775 Solvers
-
Remove from a 2-D matrix all the rows that contain at least one element less than or equal to 4
139 Solvers
-
Set some matrix elements to zero
621 Solvers
More from this Author174
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This problem assumes the first position is always valid, or there should be a default position if the first is invalid.