-
Notifications
You must be signed in to change notification settings - Fork 0
/
13.py
149 lines (149 loc) · 3.54 KB
/
13.py
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
test = {
'name': 'Problem 13',
'points': 2,
'suites': [
{
'cases': [
{
'code': r"""
scm> (cond ((> 2 3) 5)
.... ((> 2 4) 6)
.... ((< 2 5) 7)
.... (else 8))
7
scm> (cond ((> 2 3) 5)
.... ((> 2 4) 6)
.... (else 8))
8
scm> (cond ((= 1 1))
.... ((= 4 4) 'huh)
.... (else 'no))
#t
""",
'hidden': False,
'locked': False
}
],
'scored': True,
'setup': '',
'teardown': '',
'type': 'scheme'
},
{
'cases': [
{
'code': r"""
scm> (cond ((> 2 3) 5)
.... ((> 2 4) 6)
.... ((< 2 5) 7))
7
scm> (cond ((> 2 3) (display 'oops) (newline))
.... (else 9))
9
scm> (cond ((< 2 1))
.... ((> 3 2))
.... (else 5))
#t
scm> (cond (#f 1))
scm> (cond ((= 4 3) 'nope)
.... ((= 4 4) 'hi)
.... (else 'wat))
hi
scm> (cond ((= 4 4) (+ 40 2))
.... (else 'wat 0))
42
scm> (cond (12))
12
scm> (cond ((= 4 3))
.... ('hi))
hi
scm> (eval (cond (False 1) (False 2)))
""",
'hidden': False,
'locked': False
},
{
'code': r"""
scm> (cond (0 'yea)
.... (else 'nay))
yea
""",
'hidden': False,
'locked': False
},
{
'code': r"""
scm> (define x 0)
x
scm> (define y 0)
y
scm> (define z 0)
z
scm> (cond (#t
.... (define x (+ x 1))
.... (define y (+ y 1))
.... (define z (+ z 1)))
.... (else
.... (define x (- x 5))
.... (define y (- y 5))
.... (define z (- z 5))))
z
scm> (list x y z)
(1 1 1)
""",
'hidden': False,
'locked': False
},
{
'code': r"""
scm> (define x 0)
x
scm> (cond ((define x (+ x 1)) 'a)
.... ((define x (+ x 100)) 'b))
a
scm> x
1
scm> (cond ((= 1 1) nil))
()
""",
'hidden': False,
'locked': False
},
{
'code': r"""
scm> (define (print-and-false val)
.... (print val)
.... #f)
print-and-false
scm> (cond ((print-and-false 'cond1))
.... ((print-and-false 'cond2))
.... ((print-and-false 'cond3))
.... ((print-and-false 'cond4)))
cond1
cond2
cond3
cond4
scm> (define (print-and-true val)
.... (print val)
.... #t)
print-and-true
scm> (cond ((print-and-false 'cond1))
.... ((print-and-false 'cond2))
.... ((print-and-true 'cond3))
.... ((print-and-false 'cond4)))
cond1
cond2
cond3
#t
""",
'hidden': False,
'locked': False
}
],
'scored': True,
'setup': '',
'teardown': '',
'type': 'scheme'
}
]
}