forked from Cal-CS-61A-Staff/faded-parsons
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
53 lines (47 loc) · 2.78 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Faded Parsons Problems</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="js-parsons/parsons.css"/>
</head>
<body>
<nav class="navbar navbar-expand-md sticky-top navbar-dark bg-dark mb-4">
<div class="navbar-brand">🧩 Faded Parsons Problems</div>
</nav>
<div class="container">
<p>This website lets you work on Faded Parsons Problems, a type of
programming exercise where you rearrange blocks of code and fill in blanks
to create a working program. You can learn more about Faded Parsons Problems
in <a target="_blank" href="https://dl.acm.org/doi/10.1145/3411764.3445228">
Nate Weinman's CHI 2021 paper</a>.
<p>The problems hosted here are all in Python 3 and checked for correctness using <a target="_blank" href="https://docs.python.org/3/library/doctest.html">doctests</a>.
</p>
<p>Here's a (non-comprehensive) list of the problem hosted here:</p>
<ul>
<li><a href="problem.html?name=greater_num">greater_num</a> (Conditionals)</li>
<li><a href="problem.html?name=hello_world">hello_world</a> (Conditionals)</li>
<li><a href="problem.html?name=assign_grade">assign_grade</a> (Conditionals)</li>
<li><a href="problem.html?name=count_evens">count_evens</a> (Loops)</li>
<li><a href="problem.html?name=count_multiples">count_multiples</a> (Loops)</li>
<li><a href="problem.html?name=average_scores">average_scores</a> (Loops+Lists)</li>
<li><a href="problem.html?name=concatenator">concatenator</a> (Loops+Lists)</li>
<li><a href="problem.html?name=double_time">double_time</a> (List Mutation)</li>
<li><a href="problem.html?name=sum_grid">sum_grid</a> (Nested Lists)</li>
<li><a href="problem.html?name=contains_15row">contains_15row</a> (Nested Lists)</li>
<li><a href="problem.html?name=count_unread_books">count_unread_books</a> (Dicts)</li>
<li><a href="problem.html?name=plant">plant</a> (Classes)</li>
<li><a href="problem.html?name=movie_purchase">movie_purchase</a> (Classes)</li>
<li><a href="problem.html?name=player">player</a> (Classes)</li>
<li><a href="problem.html?name=clothing">clothing</a> (Classes)</li>
</ul>
<p>If you're a teacher and would like to host your own problems,
<a target="blank" href="https://github.com/pamelafox/faded-parsons-static">
check the Github repository for more instructions.
</a>
</p>
</div>
</body>
</html>