in reply to Re^4: Using imported .txt file with Algorithms::Combinatorics
in thread Using imported .txt file with Algorithms::Combinatorics

an unwanted space in-between the 2 words that were combined
Replace the print statement with something like:
print join('',@$c) ."\n";

Replies are listed 'Best First'.
Re^6: Using imported .txt file with Algorithms::Combinatorics
by choroba (Cardinal) on Jan 08, 2014 at 13:28 UTC
    Or, golfed,
    print @$c, "\n";
    لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

      Thanks!