this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

stats

+80
+68
stats/Untitled.ipynb
··· 1 + { 2 + "cells": [ 3 + { 4 + "cell_type": "code", 5 + "execution_count": 1, 6 + "metadata": {}, 7 + "outputs": [], 8 + "source": [ 9 + "import Data.List\n", 10 + "import Combinatorics" 11 + ] 12 + }, 13 + { 14 + "cell_type": "code", 15 + "execution_count": 5, 16 + "metadata": {}, 17 + "outputs": [ 18 + { 19 + "data": { 20 + "text/plain": [ 21 + "[[1,1,1],[1,1,2],[1,2,1],[1,2,2],[2,1,1],[2,1,2],[2,2,1],[2,2,2]]" 22 + ] 23 + }, 24 + "metadata": {}, 25 + "output_type": "display_data" 26 + } 27 + ], 28 + "source": [ 29 + "variateRep 3 [1,2]" 30 + ] 31 + }, 32 + { 33 + "cell_type": "code", 34 + "execution_count": 7, 35 + "metadata": {}, 36 + "outputs": [ 37 + { 38 + "data": { 39 + "text/plain": [ 40 + "[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]" 41 + ] 42 + }, 43 + "metadata": {}, 44 + "output_type": "display_data" 45 + } 46 + ], 47 + "source": [ 48 + "variate 3 [1,2,3]" 49 + ] 50 + } 51 + ], 52 + "metadata": { 53 + "kernelspec": { 54 + "display_name": "Haskell", 55 + "language": "haskell", 56 + "name": "haskell" 57 + }, 58 + "language_info": { 59 + "codemirror_mode": "ihaskell", 60 + "file_extension": ".hs", 61 + "name": "haskell", 62 + "pygments_lexer": "Haskell", 63 + "version": "8.4.4" 64 + } 65 + }, 66 + "nbformat": 4, 67 + "nbformat_minor": 2 68 + }
+12
stats/default.nix
··· 1 + let pkgs = import ../pkgs.nix; 2 + in 3 + import "${pkgs.ihaskell}/release.nix" { 4 + compiler = "ghc844"; 5 + nixpkgs = import pkgs.nixpkgs {}; 6 + packages = self: with self; [ 7 + papa 8 + linear 9 + combinatorial 10 + vector 11 + ]; 12 + }