Skip to content

Instantly share code, notes, and snippets.

"""Linked List implementation in Python."""
class LinkedCell:
"""Node implementation for linked list."""
def __init__(self, v, n=-1):
"""Construct for LinkedCell."""
self.value = v
self.next = n
@tabrez
tabrez / MNIST.ipynb
Created January 23, 2018 10:26
MNIST.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tabrez
tabrez / MNIST.ipynb
Created January 18, 2018 05:26
MNIST.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tabrez
tabrez / califorinia_housing_prices.ipynb
Last active January 9, 2018 15:59
califorinia_housing_prices.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tabrez
tabrez / califorinia_housing_prices-part1.ipynb
Created December 28, 2017 05:55
califorinia_housing_prices-part1.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tabrez
tabrez / Exercise.ipynb
Created December 19, 2017 17:26
Exercise_occupation.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tabrez
tabrez / Exercise.ipynb
Created December 19, 2017 16:13
Exercise_Alcohol.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tabrez
tabrez / Exercises.ipynb
Created December 15, 2017 06:57
Exercises.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tabrez
tabrez / Exercises.ipynb
Last active December 15, 2017 07:00
Exercises.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tabrez
tabrez / Exercise.ipynb
Last active December 15, 2017 07:01
Exercise.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.