Problem 1466. Convert Two Character String into a Binary Vector
Given a string "XOXXO" convert it into a binary vector. [1 0 1 1 0]
Paul Berglund implemented an optimal method in Snow Cones
Input: "XXOOX"
Output: [1 1 0 0 1]
Solution Stats
Problem Comments
-
1 Comment
Robert Wagner
on 2 Feb 2024
man sieht den Wald vor Bäumen nicht!
Solution Comments
Show commentsProblem Recent Solvers209
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2748 Solvers
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2321 Solvers
-
Are all the three given point in the same line?
583 Solvers
-
Matrix with different incremental runs
522 Solvers
-
525 Solvers
More from this Author308
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!