duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| #!/usr/bin/env perl | |
| use 5.012; | |
| use warnings; | |
| use File::Spec; | |
| =head1 NAME | |
| C<perlopen.pl> - Open perl modules quickly and easily | |
| =head1 DESCRIPTION |
| #!/usr/bin/env perl | |
| use 5.012; | |
| use warnings; | |
| use Net::Whois::Raw; | |
| $\ = "\n"; | |
| my @tlds = qw/dk se/; | |
| my $wordlist; |
| #!/usr/bin/env python | |
| import random | |
| class Markov: | |
| def __init__(self, file, size): | |
| self.size = size | |
| self.starts = [] | |
| self.cache = {} | |
| self.file_to_words(file) | |
| self.parse_words() |