From 4493a71f62adec164d5184a2982cd568d72de5a4 Mon Sep 17 00:00:00 2001 From: Guillermo Ramos Date: Thu, 30 May 2019 22:16:04 +0200 Subject: [010] Add challenge descriptions in header --- 010/ch1.pl | 6 ++++++ 010/ch2.pl | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/010/ch1.pl b/010/ch1.pl index 6ecf740..645f71c 100755 --- a/010/ch1.pl +++ b/010/ch1.pl @@ -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; diff --git a/010/ch2.pl b/010/ch2.pl index 9e72fad..f0566df 100755 --- a/010/ch2.pl +++ b/010/ch2.pl @@ -1,4 +1,9 @@ #!/usr/bin/env perl +# +# Write a script to find Jaro-Winkler distance between two strings. For more +# information check wikipedia page. +# (https://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance) +################################################################################ use strict; use warnings; -- cgit v1.2.3