Skip to content

Instantly share code, notes, and snippets.

@yoon
Created August 21, 2023 16:22
Show Gist options
  • Save yoon/4b8bdbc447e595008cbd334801ac4bb0 to your computer and use it in GitHub Desktop.
Save yoon/4b8bdbc447e595008cbd334801ac4bb0 to your computer and use it in GitHub Desktop.
bounty_of_greens = ["Arugula", "Breen", "Buttercrunch", "Buttercrunch", "Butterhead", "Butterhead", "Green Mustard", "Kale", "Monte Carlo", "Red Mustard", "Red Sails", "Rouge D’hiver", "Swiss Chard", "Tatsoi", "Cherry Tomatoes", "Jalapenos", "Sweet Peppers", "Cilantro", "Mint", "Sweet Thai Basil", "Thyme"]
healthy_spring = ["Bok Choy", "Bulls Blood", "Bulls Blood", "Wheatgrass", "Wheatgrass", "Arugula", "Breen", "Butterhead", "Green Mustard", "Kale", "Monte Carlo", "Red Mustard", "Red Sails", "Rouge D’hiver", "Swiss Chard", "Tatsoi", "Chervil", "Holy Basil", "Red Sorrel", "Cilantro", "Mint", "Sweet Thai Basil", "Thyme", "Cherry Tomatoes", "Jalapenos", "Sweet Peppers", "Chamomile", "Fiesta Gitana"]
treat_your_senses = ["Hon Tsai Tai", "Hon Tsai Tai", "Purple Kohlrabi", "Red Tatsoi", "Arugula", "Breen", "Butterhead", "Green Mustard", "Kale", "Monte Carlo", "Red Mustard", "Red Sails", "Rouge D’hiver", "Swiss Chard", "Tatsoi", "Dill", "Cilantro", "Mint", "Sweet Thai Basil", "Thyme", "Mini Cauliflower", "Mini Cauliflower", "Cherry Tomatoes", "Jalapenos", "Sweet Peppers", "Snapdragon", "Sunflower", "Sunflower"]
puts "Unique to Bounty of Greens"
puts "Not in Treat Your Senses: #{bounty_of_greens - treat_your_senses}"
puts "Not in Healthy Spring: #{bounty_of_greens - healthy_spring}"
puts "Unique to Healthy Spring"
puts "Not in Bounty of Greens: #{healthy_spring - bounty_of_greens}"
puts "Not in Treat Your Senses: #{healthy_spring - treat_your_senses}"
puts "Unique to Treat Your Senses"
puts "Not in Bounty of Greens: #{treat_your_senses - bounty_of_greens}"
puts "Not in Healthy Spring: #{treat_your_senses - healthy_spring}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment