Guest User

Untitled

a guest
Jun 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Menu
  2. {
  3. public string Title;
  4. public List<Menu> Items;
  5. }
  6.  
  7. <menu title='File'>
  8. <items>
  9. <menu title='Open'/>
  10. <menu title='Options'>
  11. <items>
  12. <menu title='Edit'/>
  13. </items>
  14.  
  15. /menu>
  16. </items>
  17. </menu>
  18.  
  19. H0 = 1
  20. H1 = 2 * x
  21. Hn+1(x) = 2 * x * Hn(x) - 2 * n * Hn-1(x)
Add Comment
Please, Sign In to add comment