Skip to content

Instantly share code, notes, and snippets.

View beltiras's full-sized avatar

Árni St. Steinunnarson beltiras

  • Leiguskjól
  • Reykjavík, Iceland
View GitHub Profile
@beltiras
beltiras / sll.py
Last active April 15, 2019 20:51 — forked from gunnarig/sll.py
class SLL_Node:
def __init__(self, data, next):
self.data = data
self.next = next
# IMPLEMENT THIS
def average_of_list(head):
if type(head) == float:
return head