Sha256: 5fbfa1952eb4f5767fb4d3837a0d42bd3f03fb3b6b8a2e31989c8e777e897492

Contents?: true

Size: 1.56 KB

Versions: 47

Compression:

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

## Resources

Remember to check out the Perl 6 [documentation](https://docs.perl6.org/) and
[resources](https://perl6.org/resources/) pages for information, tips, and
examples if you get stuck.

## Running the tests

There is a test script included with the exercise; a file with the extension
`.t`. You can run the test script for the exercise by executing the command
`prove . --exec=perl6` in the exercise directory. You can also add the `-v` flag
e.g. `prove . --exec=perl6 -v` to display all tests, including any optional
tests marked as 'TODO'.

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

47 entries across 47 versions & 1 rubygems

Version Path
trackler-2.2.1.43 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.42 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.41 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.40 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.39 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.38 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.37 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.36 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.35 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.34 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.33 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.32 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.31 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.30 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.29 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.28 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.27 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.26 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.25 tracks/perl6/exercises/trinary/README.md
trackler-2.2.1.24 tracks/perl6/exercises/trinary/README.md