One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# Use `pip3 install pdfminer.six` for python3 | |
from typing import Container | |
from io import BytesIO | |
from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter | |
from pdfminer.converter import TextConverter, XMLConverter, HTMLConverter | |
from pdfminer.layout import LAParams | |
from pdfminer.pdfpage import PDFPage | |
import math | |
import random | |
start = 0 | |
end = 36 | |
def createList(r1, r2): | |
# Testing if range r1 and r2 | |
# are equal |
''' | |
Let's define a sevenish number is a number that is one of a power of 7, or a number that is the sum of unique power of 7s | |
From the beginning the first few sevenish are: | |
1, 7, 8, 49, 50 and so on | |
You are to create an algorithm that finds the i'th sevenish number | |
''' |
function permutations(list) | |
{ | |
// Empty list has one permutation | |
if (list.length == 0) | |
return [[]]; | |
var result = []; | |
for (var i=0; i<list.length; i++) |
!function(){function n(n){return null!=n&&!isNaN(n)}function t(n){return n.length}function e(n){for(var t=1;n*t%1;)t*=10;return t}function r(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}catch(r){n.prototype=t}}function u(){}function i(n){return aa+n in this}function o(n){return n=aa+n,n in this&&delete this[n]}function a(){var n=[];return this.forEach(function(t){n.push(t)}),n}function c(){var n=0;for(var t in this)t.charCodeAt(0)===ca&&++n;return n}function s(){for(var n in this)if(n.charCodeAt(0)===ca)return!1;return!0}function l(){}function f(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function h(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.substring(1);for(var e=0,r=sa.length;r>e;++e){var u=sa[e]+t;if(u in n)return u}}function g(){}function p(){}function v(n){function t(){for(var t,r=e,u=-1,i=r.length;++u<i;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=[],r=new u;return t.on=function(t,u){var i,o=r.get(t);return arguments |
.d3-slider { | |
position: relative; | |
font-family: Verdana,Arial,sans-serif; | |
font-size: 9; | |
border: 0.5px solid #827878; | |
z-index: 2; | |
fill: black; | |
} | |
.d3-slider-horizontal { |
<!DOCTYPE html> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="//d3js.org/d3.v3.min.js"></script> | |
<script src="//d3js.org/topojson.v1.min.js"></script> | |
<script src="https://unpkg.com/[email protected]/build/d3-simple-slider.js"></script> | |
<title>Japanese Population Trend After WW2</title> | |
<style> | |
.keys.selected { | |
font-weight: bold; |
license: mit |