Skip to content

Commit

Permalink
auto commit
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispiech committed Oct 31, 2023
1 parent 28d9cc7 commit cc7e0f6
Show file tree
Hide file tree
Showing 100 changed files with 279 additions and 94 deletions.
1 change: 1 addition & 0 deletions chapters/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ <h1>Course Reader for CS109</h1>
<ol>
<li><a href="{{pathToLang}}part1/prob_or">General Inclusion-Exclusion</a>. <i>Oct 7th 2023</i></li>
<li><a href="{{pathToLang}}intro/core_probability_ref">Core Probability Reference</a>. <i>Oct 7th 2023</i></li>
<li><a href="{{pathToLang}}examples/counting_graphs/">Counting Random Graphs</a>. <i>Oct 31st 2023</i></li>
</ol>
</div>

Expand Down
26 changes: 25 additions & 1 deletion chapters/intro/all_distributions/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,45 @@ <h3>Discrete Random Variables</h3>
%>
</p>

<p>
<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p >
<%
include('templates/rvCards/binomial.html')
%>
</p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<%
include('templates/rvCards/poisson.html')
%>
</p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<%
include('templates/rvCards/geometric.html')
%>
</p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<%
include('templates/rvCards/negBinomial.html')
%>
</p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<h3>Continuous Random Variables</h3>

<p>
Expand All @@ -43,18 +58,27 @@ <h3>Continuous Random Variables</h3>
%>
</p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<%
include('templates/rvCards/exponential.html')
%>
</p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<%
include('templates/rvCards/normal.html')
%>
</p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<%
include('templates/rvCards/beta.html')
Expand Down
13 changes: 9 additions & 4 deletions chapters/part1/equally_likely/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,18 @@
to make indistinguishable objects distinct, as long as your calculation of the size of the event space makes the
exact same assumptions.</p>


<p><b><i>Example:</i></b> What is the probability that the sum of two die is equal to 7?</p>

<div class="alert alert-warning"><b>Buggy Solution:</b> You could define your sample space to be all the possible sum values of two die (2 through 12).
However this sample space fails the “equally likely” test. You are not equally likely to have a sum of 2 as you
are to have a sum of 7.</div>

<p>
<div id="sum_dice"class="purpleBox">
<p><b><i>Example:</i></b> What is the probability that the sum of two die is equal to 7?</p>


<div class="alert alert-warning"><b>Buggy Solution:</b> You could define your sample space to be all the possible sum values of two die (2 through 12).
However this sample space fails the “equally likely” test. You are not equally likely to have a sum of 2 as you
are to have a sum of 7.</div>


<p><b><i>Solution:</i></b> Consider the sample space from the previous chapter where we thought of the die as distinct and
enumerated all of the outcomes in the sample space. The first number is the roll on die 1 and the second
Expand Down
19 changes: 18 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,25 @@ body {
.exclude-from-print {
display: none !important;
}
}
.newpage-before {
page-break-before: always;
}

.newpage-after {
page-break-after: always;
}
.bordered {
page-break-inside: avoid;
}

h3 {
break-after: avoid-page;
}

h2 {
break-after: avoid-page;
}
}

#sidebar ul li a,
#sidebar ul li a:hover,
Expand Down
Binary file added en/.DS_Store
Binary file not shown.
Binary file modified en/ProbabilityForComputerScientists.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions en/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ <h1>Course Reader for CS109</h1>
<ol>
<li><a href="part1/prob_or">General Inclusion-Exclusion</a>. <i>Oct 7th 2023</i></li>
<li><a href="intro/core_probability_ref">Core Probability Reference</a>. <i>Oct 7th 2023</i></li>
<li><a href="examples/counting_graphs/">Counting Random Graphs</a>. <i>Oct 31st 2023</i></li>
</ol>
</div>

Expand Down
26 changes: 25 additions & 1 deletion en/intro/all_distributions/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,10 @@ <h3>Discrete Random Variables</h3>
}
</script></p>

<p>
<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p >
<!-- Template that renders a single random variable card -->

<div class="bordered">
Expand Down Expand Up @@ -540,6 +543,9 @@ <h3>Discrete Random Variables</h3>
}
</script></p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<!-- Template that renders a single random variable card -->

Expand Down Expand Up @@ -634,6 +640,9 @@ <h3>Discrete Random Variables</h3>
}
</script></p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<!-- Template that renders a single random variable card -->

Expand Down Expand Up @@ -734,6 +743,9 @@ <h3>Discrete Random Variables</h3>
}
</script></p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<!-- Template that renders a single random variable card -->

Expand Down Expand Up @@ -839,6 +851,9 @@ <h3>Discrete Random Variables</h3>
}
</script></p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<h3>Continuous Random Variables</h3>

<p>
Expand Down Expand Up @@ -960,6 +975,9 @@ <h3>Continuous Random Variables</h3>
}
</script></p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<!-- Template that renders a single random variable card -->

Expand Down Expand Up @@ -1056,6 +1074,9 @@ <h3>Continuous Random Variables</h3>
}
</script></p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<!-- Template that renders a single random variable card -->

Expand Down Expand Up @@ -1220,6 +1241,9 @@ <h3>Continuous Random Variables</h3>
}
</script></p>

<!-- put a page break in the PDF -->
<div class="newpage-after"></div>

<p>
<!-- Template that renders a single random variable card -->

Expand Down
13 changes: 9 additions & 4 deletions en/part1/equally_likely/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -397,13 +397,18 @@
to make indistinguishable objects distinct, as long as your calculation of the size of the event space makes the
exact same assumptions.</p>


<p><b><i>Example:</i></b> What is the probability that the sum of two die is equal to 7?</p>

<div class="alert alert-warning"><b>Buggy Solution:</b> You could define your sample space to be all the possible sum values of two die (2 through 12).
However this sample space fails the “equally likely” test. You are not equally likely to have a sum of 2 as you
are to have a sum of 7.</div>

<p>
<div id="sum_dice"class="purpleBox">
<p><b><i>Example:</i></b> What is the probability that the sum of two die is equal to 7?</p>


<div class="alert alert-warning"><b>Buggy Solution:</b> You could define your sample space to be all the possible sum values of two die (2 through 12).
However this sample space fails the “equally likely” test. You are not equally likely to have a sum of 2 as you
are to have a sum of 7.</div>


<p><b><i>Solution:</i></b> Consider the sample space from the previous chapter where we thought of the die as distinct and
enumerated all of the outcomes in the sample space. The first number is the roll on die 1 and the second
Expand Down
Binary file added print/.DS_Store
Binary file not shown.
56 changes: 28 additions & 28 deletions print/hash_values.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"../en/index.html": "6ef83d229ca8acc5eb20cda70c063963",
"../en/intro/notation/index.html": "80ce2a0c31d5958062a9e36ee6778986",
"../en/intro/core_probability_ref/index.html": "40c849fe059aa68d3e46322d59e0b6ee",
"../en/intro/all_distributions/index.html": "3041852c774c3bf1855bb94aa96b7e5e",
"../en/intro/all_distributions/index.html": "e161b7648fdcdc34f60b7643b801486b",
"../en/intro/python/index.html": "ff192d5c8732ad219e111d3ef4bdc26e",
"../en/intro/calculators/index.html": "15ad7186354bc063b6926a3e26abc0d3",
"../en/part1/counting/index.html": "3050001946dede5ef354ba2583aec7cc",
"../en/part1/combinatorics/index.html": "980e8d6fd32d78749d18397334b01c05",
"../en/part1/probability/index.html": "98412776cf5aab1c729c9296d321ab1a",
"../en/part1/equally_likely/index.html": "48948dc08a21b4a59181fad6d84179bd",
"../en/part1/equally_likely/index.html": "1fd0375831ac45799bfa036decc2afc3",
"../en/part1/prob_or/index.html": "5446ea3bd04f6afb8225dc2e0869be5a",
"../en/part1/cond_prob/index.html": "e190909f054bea9c5520c826afa9a4ef",
"../en/part1/independence/index.html": "69809940c0504eab3d83a00335f0c17e",
Expand All @@ -16,6 +16,11 @@
"../en/part1/bayes_theorem/index.html": "06bc8984b77561e5a492a12a473f09d6",
"../en/part1/log_probabilities/index.html": "30d664a90c840d89028138f2a15f9b20",
"../en/part1/many_flips/index.html": "ca9a6b1ace9bb33932b8b9df41d7c0d1",
"../en/examples/enigma/index.html": "afd97e5dacb9ce1d5c99dc57413a30a4",
"../en/examples/serendipity/index.html": "7ed5e95e76e022f73301508dedc50e3b",
"../en/examples/random_shuffles/index.html": "9af14913ec75f347f8dacff9bc7502de",
"../en/examples/counting_graphs/index.html": "17e2d92a722d3f352adfa5de066bf9c8",
"../en/examples/bacteria_evolution/index.html": "c0e54908b2e3b953a470db76bbab97d5",
"../en/part2/rvs/index.html": "0b0a02f4fd4d2eedb364067bb42a4017",
"../en/part2/pmf/index.html": "1df626ec09fc868d51eea50be9e323ef",
"../en/part2/expectation/index.html": "f5f3f086629632ec508f118f3904e7e0",
Expand All @@ -28,31 +33,6 @@
"../en/part2/exponential/index.html": "293c9bf211ab18aaa97405d8563aebcb",
"../en/part2/normal/index.html": "104742361b8d1b301f65911533aeca17",
"../en/part2/binomial_approx/index.html": "fbc8904aa5fffd864d8b93522e581f2d",
"../en/part3/joint/index.html": "c4bf9a82dce0bff524aa4d346fb24630",
"../en/part3/multinomial/index.html": "4d1efa18cda9604eefd376e658700e65",
"../en/part3/continuous_joint/index.html": "a3d1582697d1498237279d1aef481090",
"../en/part3/inference/index.html": "a1a6b92f3f296d4a9ae824eafd6d8fdf",
"../en/part3/bayesian_networks/index.html": "ab652d1ca64d12553562a0a69cdedad0",
"../en/part3/independent_vars/index.html": "cb0e98b009940291baa2df472d9a5dfd",
"../en/part3/correlation/index.html": "28686b4e41b6a7455fcab09cf622685b",
"../en/part3/computational_inference/index.html": "e64e0329ce941690a3fa0010af0972bd",
"../en/part4/beta/index.html": "011f60d1b84968a61fcc383324fc1ab1",
"../en/part4/summation_vars/index.html": "e417c194a7db4c82256794e83de4e015",
"../en/part4/clt/index.html": "9acf281e179adb877faa125c6357b33f",
"../en/part4/samples/index.html": "447a1388c39b9dd30ef10439f31c6283",
"../en/part4/bootstrapping/index.html": "61ffde20ca6259d9498b772c81822bd3",
"../en/part4/algorithmic_analysis/index.html": "a144057c9e461828eb0810da20def509",
"../en/part5/parameter_estimation/index.html": "663a7b969e328c599284e681bb061cbb",
"../en/part5/mle/index.html": "ccf756bb2e6fb28115cbcae305439f69",
"../en/part5/map/index.html": "bd2ba4199c1cfe848feab49a79722938",
"../en/part5/machine_learning/index.html": "52d9f4d520e100b8d9cc9f09950c42ea",
"../en/part5/naive_bayes/index.html": "1f14ae36921d1613c1d573af95f51764",
"../en/part5/log_regression/index.html": "378d0f59da28c00a45d8753ecefbf3a9",
"../en/examples/enigma/index.html": "afd97e5dacb9ce1d5c99dc57413a30a4",
"../en/examples/serendipity/index.html": "7ed5e95e76e022f73301508dedc50e3b",
"../en/examples/random_shuffles/index.html": "9af14913ec75f347f8dacff9bc7502de",
"../en/examples/counting_graphs/index.html": "17e2d92a722d3f352adfa5de066bf9c8",
"../en/examples/bacteria_evolution/index.html": "c0e54908b2e3b953a470db76bbab97d5",
"../en/examples/100_binomial_problems/index.html": "931319539da54851ed9776edd0b36f65",
"../en/examples/winning_series/index.html": "e2fdec78561e68b51b4369ab235cb4b8",
"../en/examples/approximate_counting/index.html": "a8435db01dfb766177412971de483fb6",
Expand All @@ -62,6 +42,14 @@
"../en/examples/grades_not_normal/index.html": "aeb3700aaf5cdb90d9373b258ffbaa18",
"../en/examples/curse_of_dimensionality/index.html": "ec7d406a6878fca840f8d842eb0f950b",
"../en/examples/algorithmic_art/index.html": "151ae1632171939057b639f8de6cc339",
"../en/part3/joint/index.html": "c4bf9a82dce0bff524aa4d346fb24630",
"../en/part3/multinomial/index.html": "4d1efa18cda9604eefd376e658700e65",
"../en/part3/continuous_joint/index.html": "a3d1582697d1498237279d1aef481090",
"../en/part3/inference/index.html": "a1a6b92f3f296d4a9ae824eafd6d8fdf",
"../en/part3/bayesian_networks/index.html": "ab652d1ca64d12553562a0a69cdedad0",
"../en/part3/independent_vars/index.html": "cb0e98b009940291baa2df472d9a5dfd",
"../en/part3/correlation/index.html": "28686b4e41b6a7455fcab09cf622685b",
"../en/part3/computational_inference/index.html": "e64e0329ce941690a3fa0010af0972bd",
"../en/examples/fairness/index.html": "81c8368b171eba43521024aa7e5b9a40",
"../en/examples/federalist/index.html": "a04081aab1d7fd3775f00c128387449c",
"../en/examples/name2age/index.html": "2d8018282c547cc510e59c3df2175185",
Expand All @@ -71,10 +59,22 @@
"../en/examples/bayesian_viral_load_test/index.html": "5484a94acadef7ae6dc20a09e468135e",
"../en/examples/dart_logo/index.html": "c140d81c37f03ca7e26d07a3d8467e48",
"../en/examples/tracking_in_2D/index.html": "fbc47eeb24db26e94586cdd95313710d",
"../en/part4/beta/index.html": "011f60d1b84968a61fcc383324fc1ab1",
"../en/part4/summation_vars/index.html": "e417c194a7db4c82256794e83de4e015",
"../en/part4/clt/index.html": "9acf281e179adb877faa125c6357b33f",
"../en/part4/samples/index.html": "447a1388c39b9dd30ef10439f31c6283",
"../en/part4/bootstrapping/index.html": "61ffde20ca6259d9498b772c81822bd3",
"../en/part4/algorithmic_analysis/index.html": "a144057c9e461828eb0810da20def509",
"../en/examples/thompson/index.html": "d79bc3b51a6cde0dc97eaff6b9513867",
"../en/examples/night_sight/index.html": "9b37b6c30e195ac54af6053085b978dd",
"../en/examples/p_hacking/index.html": "8b1141fa7ac25b4fbdfca46ef604c556",
"../en/examples/differential_privacy/index.html": "4cfb8805a4bb42d908aaaf9efe179ef2",
"../en/part5/parameter_estimation/index.html": "663a7b969e328c599284e681bb061cbb",
"../en/part5/mle/index.html": "ccf756bb2e6fb28115cbcae305439f69",
"../en/part5/map/index.html": "bd2ba4199c1cfe848feab49a79722938",
"../en/part5/machine_learning/index.html": "52d9f4d520e100b8d9cc9f09950c42ea",
"../en/part5/naive_bayes/index.html": "1f14ae36921d1613c1d573af95f51764",
"../en/part5/log_regression/index.html": "378d0f59da28c00a45d8753ecefbf3a9",
"../en/examples/mle_demo/index.html": "b26b666d3b7124cbedc81cbd819c6c99",
"../en/examples/mle_pareto/index.html": "408438fe6a9a56c890605636eaf46fce",
"../en/examples/mixture_models/index.html": "55f6390b3ce3ed1c1846af3f887a6129"
Expand Down
6 changes: 4 additions & 2 deletions print/pdfgenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ class PdfGenerator:
# https://chromedevtools.github.io/devtools-protocol/tot/Page#method-printToPDF
print_options = {
'landscape': False,
'displayHeaderFooter': False,
'displayHeaderFooter': True,
'headerTemplate': '<span>This is a header</span>',
'printBackground': True,
'preferCSSPageSize': True,
'preferCSSPageSize': False,
'footerTemplate':'<span class=pageNumber></span>'
}

def __init__(self, urls: List[str]):
Expand Down
Binary file modified print/pdfs/100_binomial_problems.pdf
Binary file not shown.
Binary file modified print/pdfs/algorithmic_analysis.pdf
Binary file not shown.
Binary file modified print/pdfs/algorithmic_art.pdf
Binary file not shown.
Binary file modified print/pdfs/all_distributions.pdf
Binary file not shown.
Binary file modified print/pdfs/approximate_counting.pdf
Binary file not shown.
Binary file modified print/pdfs/bacteria_evolution.pdf
Binary file not shown.
Binary file modified print/pdfs/bayes_theorem.pdf
Binary file not shown.
Binary file modified print/pdfs/bayesian_carbon_dating.pdf
Binary file not shown.
Binary file modified print/pdfs/bayesian_networks.pdf
Binary file not shown.
Binary file modified print/pdfs/bayesian_viral_load_test.pdf
Binary file not shown.
Binary file modified print/pdfs/bernoulli.pdf
Binary file not shown.
Binary file modified print/pdfs/beta.pdf
Binary file not shown.
Binary file modified print/pdfs/binomial.pdf
Binary file not shown.
Binary file modified print/pdfs/binomial_approx.pdf
Binary file not shown.
Binary file modified print/pdfs/bootstrapping.pdf
Binary file not shown.
Binary file modified print/pdfs/bridge_distribution.pdf
Binary file not shown.
Binary file modified print/pdfs/clt.pdf
Binary file not shown.
Binary file modified print/pdfs/combinatorics.pdf
Binary file not shown.
Binary file modified print/pdfs/computational_inference.pdf
Binary file not shown.
Binary file modified print/pdfs/cond_prob.pdf
Binary file not shown.
Binary file modified print/pdfs/continuous.pdf
Binary file not shown.
Binary file modified print/pdfs/continuous_joint.pdf
Binary file not shown.
Binary file modified print/pdfs/core_probability_ref.pdf
Binary file not shown.
Binary file modified print/pdfs/correlation.pdf
Binary file not shown.
Binary file modified print/pdfs/counting.pdf
Binary file not shown.
Binary file modified print/pdfs/counting_graphs.pdf
Binary file not shown.
Binary file modified print/pdfs/curse_of_dimensionality.pdf
Binary file not shown.
Binary file modified print/pdfs/dart_logo.pdf
Binary file not shown.
Binary file modified print/pdfs/differential_privacy.pdf
Binary file not shown.
Binary file modified print/pdfs/digital_vision_test.pdf
Binary file not shown.
Binary file modified print/pdfs/enigma.pdf
Binary file not shown.
Binary file modified print/pdfs/equally_likely.pdf
Binary file not shown.
Binary file modified print/pdfs/expectation.pdf
Binary file not shown.
Binary file modified print/pdfs/exponential.pdf
Binary file not shown.
Binary file modified print/pdfs/fairness.pdf
Binary file not shown.
Binary file modified print/pdfs/federalist.pdf
Binary file not shown.
Binary file modified print/pdfs/grades_not_normal.pdf
Binary file not shown.
Binary file modified print/pdfs/grading_eye_inflammation.pdf
Binary file not shown.
Binary file modified print/pdfs/independence.pdf
Binary file not shown.
Binary file modified print/pdfs/independent_vars.pdf
Binary file not shown.
Binary file modified print/pdfs/inference.pdf
Binary file not shown.
Binary file modified print/pdfs/joint.pdf
Binary file not shown.
Binary file modified print/pdfs/jury.pdf
Binary file not shown.
Binary file modified print/pdfs/law_total.pdf
Binary file not shown.
Binary file modified print/pdfs/log_probabilities.pdf
Binary file not shown.
Binary file modified print/pdfs/log_regression.pdf
Binary file not shown.
Binary file modified print/pdfs/machine_learning.pdf
Binary file not shown.
Binary file modified print/pdfs/many_flips.pdf
Binary file not shown.
Binary file modified print/pdfs/map.pdf
Binary file not shown.
Binary file modified print/pdfs/mixture_models.pdf
Binary file not shown.
Binary file modified print/pdfs/mle.pdf
Binary file not shown.
Binary file modified print/pdfs/mle_demo.pdf
Binary file not shown.
Binary file modified print/pdfs/mle_pareto.pdf
Binary file not shown.
Binary file modified print/pdfs/multinomial.pdf
Binary file not shown.
Binary file modified print/pdfs/naive_bayes.pdf
Binary file not shown.
Binary file modified print/pdfs/name2age.pdf
Binary file not shown.
Binary file modified print/pdfs/night_sight.pdf
Binary file not shown.
Binary file modified print/pdfs/normal.pdf
Binary file not shown.
Binary file modified print/pdfs/notation.pdf
Binary file not shown.
Binary file modified print/pdfs/p_hacking.pdf
Binary file not shown.
Binary file modified print/pdfs/parameter_estimation.pdf
Binary file not shown.
Binary file modified print/pdfs/pmf.pdf
Binary file not shown.
Binary file modified print/pdfs/poisson.pdf
Binary file not shown.
Binary file modified print/pdfs/prob_and.pdf
Binary file not shown.
Binary file modified print/pdfs/prob_baby_delivery.pdf
Binary file not shown.
Binary file modified print/pdfs/prob_or.pdf
Binary file not shown.
Binary file modified print/pdfs/probability.pdf
Binary file not shown.
Binary file modified print/pdfs/python.pdf
Binary file not shown.
Binary file modified print/pdfs/random_shuffles.pdf
Binary file not shown.
Binary file modified print/pdfs/rvs.pdf
Binary file not shown.
Binary file modified print/pdfs/samples.pdf
Binary file not shown.
Binary file added print/pdfs/separator_intro.pdf
Binary file not shown.
Binary file added print/pdfs/separator_part1.pdf
Binary file not shown.
Binary file added print/pdfs/separator_part2.pdf
Binary file not shown.
Binary file added print/pdfs/separator_part3.pdf
Binary file not shown.
Binary file added print/pdfs/separator_part4.pdf
Binary file not shown.
Binary file added print/pdfs/separator_part5.pdf
Binary file not shown.
Binary file modified print/pdfs/serendipity.pdf
Binary file not shown.
Binary file modified print/pdfs/summation_vars.pdf
Binary file not shown.
Binary file added print/pdfs/table_of_contents.pdf
Binary file not shown.
Binary file modified print/pdfs/thompson.pdf
Binary file not shown.
Binary file modified print/pdfs/titlepage.pdf
Binary file not shown.
Binary file modified print/pdfs/tracking_in_2D.pdf
Binary file not shown.
Binary file modified print/pdfs/uniform.pdf
Binary file not shown.
Binary file modified print/pdfs/variance.pdf
Binary file not shown.
Binary file modified print/pdfs/winning_series.pdf
Binary file not shown.
Loading

0 comments on commit cc7e0f6

Please sign in to comment.