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.50 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.49 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.48 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.47 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.46 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.45 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.44 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.43 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.42 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.41 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.40 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.39 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.38 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.37 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.36 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.35 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.34 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.33 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.32 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.31 tracks/lfe/exercises/trinary/README.md