Skip to content

Instantly share code, notes, and snippets.

@Lomacar
Lomacar / expandingVerticalMenu.html
Last active March 1, 2016 00:15
Cool vertical menu system that expands sub-menus to fill space of parent menu.
<html>
<head>
<style>
* {
font-family: Open Sans
}
ul {
@Lomacar
Lomacar / wbTree.js
Created October 21, 2014 18:28
Weighted binary tree
/*
Three main functions and one utility function for effeciently working with arrays representing weights.
buildTree(array)
- Takes an array of numbers like [5,0,99,25,2,2]
- Returns a tree, which is an array of layers, where the first layer is the input array,
the second layer is the sums of every two items in the first layer, and so on.
So the output tree with the example input would be:
[