This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import combinations | |
my_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l'] | |
num_combs = len([i for i in combinations(my_list, r=3)]) | |
print num_combs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var dashboardApp = angular.module('dashboardApp', [ | |
'ngRoute', | |
'dashboardControllers' | |
]); | |
dashboardApp.config(['$routeProvider', | |
function($routeProvider) { | |
$routeProvider.when('/index', { |
OlderNewer