diff options
author | Guillermo Ramos | 2019-05-30 22:16:04 +0200 |
---|---|---|
committer | Guillermo Ramos | 2019-05-30 22:16:04 +0200 |
commit | 4493a71f62adec164d5184a2982cd568d72de5a4 (patch) | |
tree | 64d36dd197d9e3fd2c286c0202653cb3b26a4408 /010/ch1.pl | |
parent | 8fadbab611b74777d020c4cc18ab2b13776c40c1 (diff) | |
download | perlweekly-4493a71f62adec164d5184a2982cd568d72de5a4.tar.gz |
[010] Add challenge descriptions in header
Diffstat (limited to '010/ch1.pl')
-rwxr-xr-x | 010/ch1.pl | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,4 +1,10 @@ #!/usr/bin/env perl +# +# Write a script to encode/decode Roman numerals. For example, given Roman +# numeral CCXLVI, it should return 246. Similarly, for decimal number 39, it +# should return XXXIX. Checkout wikipedia page for more information. +# (https://en.wikipedia.org/wiki/Roman_numerals) +################################################################################ use strict; use warnings; |