Sha256: c921ac13fb54360834cb3d53f9fbe4f86c961adf783742fca5571f9557db2b6e

Contents?: true

Size: 1.76 KB

Versions: 66

Compression:

Stored size: 1.76 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).

## Elm Installation

Refer to the [Exercism help page](http://exercism.io/languages/elm) for Elm
installation and learning resources.

## Writing the Code

The first time you start an exercise, you'll need to ensure you have the
appropriate dependencies installed.

```bash
$ elm-package install --yes
```

Execute the tests with:

```bash
$ elm-test
```

Automatically run tests again when you save changes:

```bash
$ elm-test --watch
```

As you work your way through the test suite, be sure to remove the `skip <|`
calls from each test until you get them all passing!

## 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

66 entries across 66 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.179 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.178 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.177 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.176 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.175 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.174 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.173 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.172 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.171 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.170 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.169 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.167 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.166 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.165 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.164 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.163 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.162 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.161 tracks/elm/exercises/transpose/README.md
trackler-2.2.1.160 tracks/elm/exercises/transpose/README.md