fix(curriculum): replace arrays with strings in daily coding challenge mar-21 (#67156)

This commit is contained in:
Jeevankumar S
2026-04-28 20:04:07 +05:30
committed by GitHub
parent aa7c01c293
commit bbe577c77c
2 changed files with 2 additions and 2 deletions
@@ -7,7 +7,7 @@ dashedName: challenge-223
# --description--
Given a 6x6 matrix (array of arrays), representing a QR code, return the string of binary data in the code.
Given a 6x6 matrix (array of strings), representing a QR code, return the string of binary data in the code.
- The QR code may be given in any rotation of 90 degree increments.
- A correctly oriented code has a 2x2 group of `1`'s (orientation markers) in the bottom-left, top-left, and top-right corners.
@@ -7,7 +7,7 @@ dashedName: challenge-223
# --description--
Given a 6x6 matrix (array of arrays), representing a QR code, return the string of binary data in the code.
Given a 6x6 matrix (array of strings), representing a QR code, return the string of binary data in the code.
- The QR code may be given in any rotation of 90 degree increments.
- A correctly oriented code has a 2x2 group of `1`'s (orientation markers) in the bottom-left, top-left, and top-right corners.