Last active
January 31, 2018 18:48
-
-
Save psbrandt/84a33e7050d2ad209f086458acf628ca to your computer and use it in GitHub Desktop.
Ancestry Q2 CSE 544 Homework 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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