DevDegree/eng-intern-challenge

Clarification on Technical requirement

Closed this issue · 4 comments

Store Braille symbols as a 6 character string reading right to left, line by line, starting at the top left. See examples below.
From my understanding of the given examples of input and outputs it looks like its reading left to right, line by line, starting at the top left.
What does it mean by reading right to left here exactly?

Yeah that tricked me up too. I'm assuming by looking at the test cases it's a mistake and it should be left to right top to bottom.

Yeah that tricked me up too. I'm assuming by looking at the test cases it's a mistake and it should be left to right top to bottom.

Yes, that is what I understand as well. I assume that is just a typo as all the examples follows read from left to right and top to bottom pattern.

Yes, I noticed this as well. The given examples work for left to right. Also, consider if you would read right to left, and start at top left then you would omit the first position.

Thank you for noticing that typo! It is indeed meant to read "left to right". The Readme has been updated.