Skip to content

Instantly share code, notes, and snippets.

View melwinalm's full-sized avatar
:octocat:
Available

Melwin Amith D'Almeida melwinalm

:octocat:
Available
  • Trellix
  • Bengaluru, India
View GitHub Profile
class Node(object):
def __init__(self):
self.data = None
self.next = None
def __init__(self,data,next):
self.data = data
self.next = next
def GetData(self):
def multiply(a,b):
if a > b:
left = a
right = b
else:
left = b
right = a
prod = 0