Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. def find_sum(self):
  2. current = self.head
  3. total = 0
  4. while current != None:
  5. total += current.get_data()
  6. current = current.get_next()
  7. return total
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement