Sha256: 41dbcc4f7520ccf61f4285c4f9ea8432a137ad712f4f0f3de434fb5c29286530

Contents?: true

Size: 1.83 KB

Versions: 128

Compression:

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

```shell
# "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 suite and module included with the exercise.
The test suite (a file with the extension `.t`) will attempt to run routines
from the module (a file with the extension `.pm6`).
Add/modify routines in the module so that the tests will pass! You can view the
test data by executing the command `perl6 --doc *.t` (\* being the name of the
test suite), and run the test suite 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

128 entries across 128 versions & 1 rubygems

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