Sha256: 34f1c14decd8385a35b353fb792a1f562ce44d8ca07de5dc1c0b2b35029d849c

Contents?: true

Size: 1.38 KB

Versions: 106

Compression:

Stored size: 1.38 KB

Contents

# Trinary

Convert a trinary number, represented as a string (e.g. '102012'), to its
decimal equivalent using first principles.

The program should consider strings specifying an invalid trinary as the
value 0.

Trinary numbers contain three symbols: 0, 1, and 2.

The last place in a trinary number is the 1's place. The second to last
is the 3's place, the third to last is the 9's place, etc.

```bash
# "102012"
    1       0       2       0       1       2    # the number
1*3^5 + 0*3^4 + 2*3^3 + 0*3^2 + 1*3^1 + 2*3^0    # the value
  243 +     0 +    54 +     0 +     3 +     2 =  302
```

If your language provides a method in the standard library to perform the
conversion, pretend it doesn't exist and implement it yourself.

* * * *

For installation and learning resources, refer to the [exercism help page][].

[exercism help page]: http://exercism.io/languages/lfe

To run the provided tests, you will need `make`.
Open a terminal window and run the following from the exercise directory:

```sh
make test
```

You should now be able to see the results of the test suite for the exercise.

## Source

All of Computer Science [http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-](http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-)

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

Version data entries

106 entries across 106 versions & 1 rubygems

Version Path
trackler-2.2.1.30 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.29 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.28 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.27 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.26 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.25 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.24 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.23 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.22 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.21 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.20 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.19 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.18 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.17 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.16 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.15 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.14 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.13 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.12 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.11 tracks/lfe/exercises/trinary/README.md