Skip to content

Commit 891d385

Browse files
author
boraxpr
committed
bite 29
1 parent b1e3d4d commit 891d385

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

29/test_wrong_char.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from wrong_char import get_index_different_char
2+
3+
4+
def test_wrong_char():
5+
inputs = (
6+
['A', 'f', '.', 'Q', 2],
7+
['.', '{', ' ^', '%', 'a'],
8+
[1, '=', 3, 4, 5, 'A', 'b', 'a', 'b', 'c'],
9+
['=', '=', '', '/', '/', 9, ':', ';', '?', '¡'],
10+
list(range(1,9)) + ['}'] + list('abcde'), # noqa E230
11+
[2, '.', ',', '!']
12+
)
13+
expected = [2, 4, 1, 5, 8, 0]
14+
15+
for arg, exp in zip(inputs, expected):
16+
err = f'get_index_different_char({arg}) should return index {exp}'
17+
assert get_index_different_char(arg) == exp, err

29/wrong_char.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
def get_index_different_char(chars):
2+
result = []
3+
Al = 0
4+
nonAl = 0
5+
for char in chars:
6+
char = str(char)
7+
if char.isalnum():
8+
# result.append(chars.index(char))
9+
Al += 1
10+
if Al > 1:
11+
break
12+
else:
13+
nonAl += 1
14+
if nonAl > 1:
15+
break
16+
# print(Al.__str__()+" "+nonAl.__str__())
17+
if Al == 2:
18+
for char in chars:
19+
charS = str(char)
20+
if not charS.isalnum():
21+
result.append(chars.index(char))
22+
else:
23+
for char in chars:
24+
charS = str(char)
25+
if charS.isalnum():
26+
result.append(chars.index(char))
27+
return result
28+
29+
30+
print(get_index_different_char(
31+
[2, '.', ',', '!']))
32+
#
33+
# A = ["1","3","A"]
34+
# print(A.index("A"))

0 commit comments

Comments
 (0)