質問編集履歴
6
タイトルのタイポの修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
あえてelif, elseを使わない条件判定はありですか?
|
test
CHANGED
File without changes
|
5
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
if not isinstance(x, int):
|
8
8
|
|
9
|
-
|
9
|
+
raise Exception("Input must be int")
|
10
10
|
|
11
11
|
```
|
12
12
|
|
4
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
[追記]
|
2
2
|
|
3
|
-
入力のバリデーションを追記しました。
|
3
|
+
以下の入力のバリデーションを追記しました。
|
4
|
+
|
5
|
+
```
|
6
|
+
|
7
|
+
if not isinstance(x, int):
|
8
|
+
|
9
|
+
raise Exception("Input must be int")
|
10
|
+
|
11
|
+
```
|
4
12
|
|
5
13
|
|
6
14
|
|
3
追記
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
あえてelif, elseを使わない条件判定はありですか?
|
1
|
+
tあえてelif, elseを使わない条件判定はありですか?
|
test
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
[追記]
|
2
2
|
|
3
3
|
入力のバリデーションを追記しました。
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
------------------------------------------------------------------
|
4
8
|
|
5
9
|
|
6
10
|
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
[追記]
|
2
|
+
|
3
|
+
入力のバリデーションを追記しました。
|
4
|
+
|
5
|
+
|
6
|
+
|
1
7
|
以下は単純な例ですが、
|
2
8
|
|
3
9
|
|
@@ -7,6 +13,12 @@
|
|
7
13
|
```python
|
8
14
|
|
9
15
|
def test(x):
|
16
|
+
|
17
|
+
if not isinstance(x, int):
|
18
|
+
|
19
|
+
raise Exception("Input must be int")
|
20
|
+
|
21
|
+
|
10
22
|
|
11
23
|
if x < 0:
|
12
24
|
|
@@ -31,6 +43,12 @@
|
|
31
43
|
```python
|
32
44
|
|
33
45
|
def test(x):
|
46
|
+
|
47
|
+
if not isinstance(x, int):
|
48
|
+
|
49
|
+
raise Exception("Input must be int")
|
50
|
+
|
51
|
+
|
34
52
|
|
35
53
|
if x < 0:
|
36
54
|
|
1
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,7 +58,7 @@
|
|
58
58
|
|
59
59
|
- 条件の抜け漏れ・オーバーラップなどが起こりやすくなる
|
60
60
|
|
61
|
-
- 実行時間が気持ち長くなる
|
61
|
+
- 実行時間が気持ち長くなる(可能性がある?)
|
62
62
|
|
63
63
|
|
64
64
|
|