回答編集履歴

1

質問内容の変更に合わせて修正しました。

2018/06/05 07:27

投稿

mather
mather

スコア6753

test CHANGED
@@ -10,22 +10,26 @@
10
10
 
11
11
 
12
12
 
13
- def fy(b):
13
+ def fy(x, b):
14
14
 
15
- return b * 2
15
+ return x ^ 2 + b * 2
16
16
 
17
17
 
18
18
 
19
- def f1(x, y):
19
+ def f1(y):
20
20
 
21
- return x + y - 3
21
+ return y - 3
22
22
 
23
23
 
24
24
 
25
25
  x = fx(a)
26
26
 
27
- y = fy(b)
27
+ y = fy(x, b)
28
28
 
29
- c = f1(x, y)
29
+ c = f1(y)
30
30
 
31
31
  ```
32
+
33
+
34
+
35
+ (質問内容の変更に合わせて修正しました。)