-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepeated_string.py
81 lines (55 loc) · 1.96 KB
/
repeated_string.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
"""
Lilah has a string, , of lowercase English letters that she repeated infinitely many times.
Given an integer, , find and print the number of letter a's in the first letters of Lilah's infinite string.
For example, if the string and , the substring we consider is , the first characters of her infinite string. There are occurrences of a in the substring.
Function Description
Complete the repeatedString function in the editor below. It should return an integer representing the number of occurrences of a in the prefix of length in the infinitely repeating string.
Sample Input:
aba
10
Sample Output:
7
Sample Input:
a
1000000000000
Sample Output:
1000000000000
"""
def find_repeated_string(string, num_repeat):
len_string = len(string)
num_whole_repeat = int(num_repeat / len_string)
num_remainder = num_repeat % len_string
num_found_whole = 0
num_found_remainder = 0
for i in range(len_string):
if not (num_whole_repeat or num_remainder > i):
break
letter = string[i]
if letter != 'a':
continue
if num_whole_repeat:
num_found_whole += 1
if num_remainder > i:
num_found_remainder += 1
total = (num_whole_repeat * num_found_whole) + num_found_remainder
return total
assert find_repeated_string('aba', 10) == 7
assert find_repeated_string('a', 1000000000000) == 1000000000000
def repeatedString(s, n):
len_string = len(s)
num_whole_repeat = int(n / len_string)
num_remainder = n % len_string
num_found_whole = 0
num_found_remainder = 0
for i in range(len_string):
if not (num_whole_repeat or num_remainder > i):
break
letter = string[i]
if letter != 'a':
continue
if num_whole_repeat:
num_found_whole += 1
if num_remainder > i:
num_found_remainder += 1
total = (num_whole_repeat * num_found_whole) + num_found_remainder
return total