Skip to content

Instantly share code, notes, and snippets.

@psbrandt
Last active January 31, 2018 18:48
Show Gist options
  • Save psbrandt/84a33e7050d2ad209f086458acf628ca to your computer and use it in GitHub Desktop.
Save psbrandt/84a33e7050d2ad209f086458acf628ca to your computer and use it in GitHub Desktop.
Ancestry Q2 CSE 544 Homework 2
group: Ancestry - person_living, male, female, parent_child
description: CSE 544 homework 2 part 2
person_living = {
p
"adam"
"betty"
"charles"
"diana"
"emily"
"fiona"
"greg"
"john"
"peter"
"jane"
}
male = {
name
"adam"
"charles"
"john"
"peter"
"greg"
}
female = {
name
"betty"
"diana"
"emily"
"fiona"
"jane"
}
parent_child = {
p1, p2
"adam", "betty"
"adam", "charles"
"charles", "diana"
"emily", "greg"
"john", "jane"
"fiona", "jack"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment