Skip to content

Instantly share code, notes, and snippets.

View mlarocca's full-sized avatar

Marcello La Rocca mlarocca

View GitHub Profile
@mlarocca
mlarocca / exploratory-data-analysis.ipynb
Created April 10, 2019 16:34
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mlarocca
mlarocca / data-wrangling.ipynb
Created April 9, 2019 12:29
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mlarocca
mlarocca / chart_utils.js
Last active December 9, 2015 22:48
Dynamic Charts Showcase - by Marcello La Rocca
if (!window.ChartUtils){
/**
Module ChartUtils
Extends Object class with several useful methods to allow better encapsulation mechanisms.<br>
Exposes a few utility functions
@module ChartUtils
*/
@mlarocca
mlarocca / chart_utils.js
Last active December 9, 2015 22:39
Dynamically populated charts - by Marcello La Rocca
if (!window.ChartUtils){
/**
Module ChartUtils
Extends Object class with several useful methods to allow better encapsulation mechanisms.<br>
Exposes a few utility functions
@module ChartUtils
*/
@mlarocca
mlarocca / sudoku_profiler.py
Created December 15, 2012 00:01
Sudoku solution checker
'''
Created on 15/dic/2012
@author: mlarocca
'''
from sudoku_solver import solve_sudoku
super_hard = [[0,0,3,0,0,5,4,1,0],
[0,0,0,1,0,0,0,8,5],
[0,0,0,3,0,0,6,0,0],
[0,0,0,0,3,0,0,6,0],