Skip to content

Instantly share code, notes, and snippets.

View Villelmo's full-sized avatar
:fishsticks:
Buongiorno Italia, gli spaghetti al dente

William Torrez Villelmo

:fishsticks:
Buongiorno Italia, gli spaghetti al dente
View GitHub Profile
@Villelmo
Villelmo / Facebook.html
Last active November 3, 2025 07:45
Facebook profile
This file has been truncated, but you can view the full file.
<!DOCTYPE html>
<html id="facebook" class="_9dls __fb-dark-mode" dir="ltr" lang="en"><head>
@Villelmo
Villelmo / revenus disponibles france metropolitaine - deciles.ipynb
Created March 19, 2022 13:33 — forked from adipasquale/revenus disponibles france metropolitaine - deciles.ipynb
iPython Notebook revenus disponibles France Métropolitaine - deciles
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Villelmo
Villelmo / adjacentElements.c
Last active March 15, 2018 00:36
Given an array of integers, find the pair of adjacent elements that has the largest product and return that product.
// Definition for arrays:
//typedef struct arr_integer{
// int size;
// int arr*;
// } inputArray;
// arr_##name alloc_arr_##name(int len) {
// arr_##name a = {len, len > 0 ? malloc(sizeof(type) * len) : NULL};
// return a;
// }