Help for this page

Select Code to Download


  1. or download this
    my %store_for_category = (
        "Dine Out" => ['restaurant A', 'restaurant B'],
        "Grocery"  => ['Walmart', 'HEB', 'Target'],
        ...
    );
    
  2. or download this
    my %category_for_store;
    for my $category (keys %store_for_category) {
    ...
            $category_for_store{ $store } = $category;
        };
    });