Problem 3690. OXO counting
Count the number of occurrences of "OXO" in rows, columns, diagonals and anti-diagonals.
Example:
>> board = ['OOX'
'XXO'
'OXO'];
>> count_OXO(board)
ans =
3
>> board = [' O '
'XXO'
'OXO'];
>> count_OXO(board)
ans =
1
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers18
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2809 Solvers
-
Create a function handle that reverses the input arguments of another function handle
157 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
509 Solvers
-
Find the index of n in magic(n)
268 Solvers
-
2212 Solvers
More from this Author40
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!