Given the position of different chess pieces on the chessboard, figure out whether castling is valid or not in the next move (white king).
- a=position of white pieces
- b=position of black pieces
https://en.wikipedia.org/wiki/Castling
Previous problem https://www.mathworks.com/matlabcentral/cody/problems/45330-castling-02#
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers10
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5811 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2056 Solvers
-
1071 Solvers
-
Create a matrix X, where each column is a shifted copy of the vector v
226 Solvers
-
Split a string into chunks of specified length
2137 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!
Let me know if u find any discrepency
I had to consider so many cases that I am almost sure some "solutions" are wrong. lol
For instance, in the last test, instead of having the Rook at b2, why not put it at d7? b={'Ba8','Bg7','Rh6','Rd7'}.