-
Notifications
You must be signed in to change notification settings - Fork 0
/
157.py
37 lines (33 loc) · 1.28 KB
/
157.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
"""
The read4 API is already defined for you.
@param buf4, a list of characters
@return an integer
def read4(buf4):
# Below is an example of how the read4 API can be called.
file = File("abcdefghijk") # File is "abcdefghijk", initially file pointer (fp) points to 'a'
buf4 = [' '] * 4 # Create buffer with enough space to store characters
read4(buf4) # read4 returns 4. Now buf = ['a','b','c','d'], fp points to 'e'
read4(buf4) # read4 returns 4. Now buf = ['e','f','g','h'], fp points to 'i'
read4(buf4) # read4 returns 3. Now buf = ['i','j','k',...], fp points to end of file
"""
class Solution:
def read(self, buf, n):
"""
:type buf: Destination buffer (List[str])
:type n: Number of characters to read (int)
:rtype: The number of actual characters read (int)
"""
amt_read = 0
while amt_read < n:
prev_amt_read = amt_read
tmp = ["" for _ in range(4)]
amt_read += read4(tmp)
print(tmp)
if amt_read > n:
buf[prev_amt_read:amt_read] = tmp[:-(amt_read-n)]
amt_read -= (amt_read-n)
else:
buf[prev_amt_read:amt_read] = tmp[:]
if amt_read-prev_amt_read < 4:
break
return amt_read