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.90 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.89 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.88 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.87 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.86 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.85 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.84 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.83 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.82 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.81 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.80 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.79 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.78 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.77 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.76 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.75 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.74 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.73 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.72 tracks/lfe/exercises/trinary/README.md
trackler-2.2.1.71 tracks/lfe/exercises/trinary/README.md