-
Notifications
You must be signed in to change notification settings - Fork 0
/
problem17
49 lines (38 loc) · 1.07 KB
/
problem17
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
num_let_teen=[0,3,3,5,4,4,3,5,5,4,3,6,6,8,8,7,7,9,8,8]
num_let_tens=[0,0,6,6,5,5,5,7,6,6]
num_let_hund=7
num_let_thou=8
num_let_and=3
def findNumLet(n):
tot=0
dig=[0,0,0,0]
dig[3]=n%10
dig[2]=(n/10)%10
dig[1]=(n/100)%10
dig[0]=n/1000
# case: we have a thousands digit
if(dig[0]!=0):
tot+= num_let_thou + num_let_teen[dig[0]]
# case: we have a hundreds digit
if(dig[1]!=0):
tot+=num_let_hund + num_let_teen[dig[1]]
# case: we have a tens digit
if(dig[2]!=0):
# case: the tens digit is 1 (we have a "teen")
if(dig[2]==1):
tot+=num_let_teen[10+dig[3]]
# case: the tens digit is not 1
else:
tot+=num_let_tens[dig[2]]
# case: we don't have a "teen" but we have a ones digit
if(dig[3]!=0 and dig[2]!=1):
tot+=num_let_teen[dig[3]]
# case: we need an "and"
if(dig[0]!=0 or dig[1]!=0):
tot+=num_let_and
print findNumLet(1)
print findNumLet(10)
print findNumLet(100)
print findNumLet(1000)
print findNumLet(101)
print findNumLet(1345)