Skip to content

Instantly share code, notes, and snippets.

@akouryy
Created December 23, 2014 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akouryy/92d161c83d3bbcc19d9a to your computer and use it in GitHub Desktop.
Save akouryy/92d161c83d3bbcc19d9a to your computer and use it in GitHub Desktop.
+-+-+
|a|b|
| +-+-+
| |c|d|
| | +-+
| | |e|
+-+-+-+
f(a) → <tr><td rowspan>a</td>f(b)f(c)
f(b) → <td>b</td></tr>
f(c) → <tr><td rowspan>c</td>f(d)f(e)
f(d) → <td>d</td></tr>
f(e) → <tr><td>e</td></tr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment