Help for this page

Select Code to Download


  1. or download this
    my %missing-words = %book-words - %dictionary;
    
  2. or download this
    my %missing = map { $_ => 1 } grep { ! exists $dict{ $_ } } keys %book
    +;