Sha256: d247c23cfe34c67a5099b8f562798ab39affa5c382dd78aa5bedee3745f9d5c6

Contents?: true

Size: 1.51 KB

Versions: 63

Compression:

Stored size: 1.51 KB

Contents

# Transpose

Given an input text output it transposed.

Roughly explained, the transpose of a matrix:

```text
ABC
DEF
```

is given by:

```text
AD
BE
CF
```

Rows become columns and columns become rows. See <https://en.wikipedia.org/wiki/Transpose>.

If the input has rows of different lengths, this is to be solved as follows:

- Pad to the left with spaces.
- Don't pad to the right.

Therefore, transposing this matrix:

```text
ABC
DE
```

results in:

```text
AD
BE
C
```

And transposing:

```text
AB
DEF
```

results in:

```text
AD
BE
 F
```

In general, all characters from the input should also be present in the transposed output.
That means that if a column in the input text contains only spaces on its bottom-most row(s),
the corresponding output row should contain the spaces in its right-most column(s).

## Running the tests

To run the tests, run the command `busted` from within the exercise directory.

## Further information

For more detailed information about the Lua track, including how to get help if
you're having trouble, please visit the exercism.io [Lua language page](http://exercism.io/languages/lua/about).

## Source

Reddit r/dailyprogrammer challenge #270 [Easy]. [https://www.reddit.com/r/dailyprogrammer/comments/4msu2x/challenge_270_easy_transpose_the_input_text](https://www.reddit.com/r/dailyprogrammer/comments/4msu2x/challenge_270_easy_transpose_the_input_text)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

63 entries across 63 versions & 1 rubygems

Version Path
trackler-2.2.1.159 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.158 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.157 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.156 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.155 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.154 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.153 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.152 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.151 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.150 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.149 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.148 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.147 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.146 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.145 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.144 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.143 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.142 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.141 tracks/lua/exercises/transpose/README.md
trackler-2.2.1.140 tracks/lua/exercises/transpose/README.md