From bbe577c77c38534f862b702a1fd121a21687c7a5 Mon Sep 17 00:00:00 2001 From: Jeevankumar S Date: Tue, 28 Apr 2026 20:04:07 +0530 Subject: [PATCH] fix(curriculum): replace arrays with strings in daily coding challenge mar-21 (#67156) --- .../69a890af247de743333bd4cc.md | 2 +- .../daily-coding-challenges-python/69a890af247de743333bd4cc.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/69a890af247de743333bd4cc.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/69a890af247de743333bd4cc.md index f6d82a0263e..7b9d90ec19a 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/69a890af247de743333bd4cc.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/69a890af247de743333bd4cc.md @@ -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. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/69a890af247de743333bd4cc.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/69a890af247de743333bd4cc.md index fb1613358a2..bc466a812a2 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/69a890af247de743333bd4cc.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/69a890af247de743333bd4cc.md @@ -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.