Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text[-1] == ".": current_sentence += text + " " sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += text + " " return sentences |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text[-1] == ".": current_sentence += text + " " sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += text + " " return sentences |
Running the following program:
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 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text[-1] == ".": current_sentence += text + " " sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += text + " " return sentences def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n") expected = [' the robustness of neural networks.', ' And this is joint'] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
Traceback (most recent call last):
File "/usr/src/app/main.py", line 33, in <module>
answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 3, in merge
transcript_segments = parse_transcript(content)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 23, in parse_transcript
matches = re.findall(pattern, content)
^^
NameError: name 're' is not defined
Testing if the previous output contains the string All tests passed
: False
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
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 | import re from collections import defaultdict from typing import List, Tuple def merge(content: str) -> List[str]: """ Merge words into sentences that end in period. Start with the first word and end with the period. Return a list of strings. """ transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text.endswith("."): current_sentence += " " + text sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += " " + text return sentences def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments |
I extracted the following code from that output:
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 | import re from collections import defaultdict from typing import List, Tuple def merge(content: str) -> List[str]: """ Merge words into sentences that end in period. Start with the first word and end with the period. Return a list of strings. """ transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text.endswith("."): current_sentence += " " + text sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += " " + text return sentences def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments |
Running the following program:
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 | import re from collections import defaultdict from typing import List, Tuple def merge(content: str) -> List[str]: """ Merge words into sentences that end in period. Start with the first word and end with the period. Return a list of strings. """ transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text.endswith("."): current_sentence += " " + text sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += " " + text return sentences def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n") expected = [' the robustness of neural networks.', ' And this is joint'] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
Traceback (most recent call last):
File "/usr/src/app/main.py", line 52, in <module>
answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 11, in merge
transcript_segments = parse_transcript(content)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 45, in parse_transcript
start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds()
^^^^^^^^^
NameError: name 'timedelta' is not defined
Testing if the previous output contains the string All tests passed
: False
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
1 2 3 4 5 6 7 8 9 10 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: current_sentence += text + " " if text.endswith("."): sentences.append(current_sentence.strip()) current_sentence = "" return sentences |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: current_sentence += text + " " if text.endswith("."): sentences.append(current_sentence.strip()) current_sentence = "" return sentences |
Running the following program:
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 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: current_sentence += text + " " if text.endswith("."): sentences.append(current_sentence.strip()) current_sentence = "" return sentences def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n") expected = [' the robustness of neural networks.', ' And this is joint'] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
Traceback (most recent call last):
File "/usr/src/app/main.py", line 29, in <module>
answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 3, in merge
transcript_segments = parse_transcript(content)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 19, in parse_transcript
matches = re.findall(pattern, content)
^^
NameError: name 're' is not defined
Testing if the previous output contains the string All tests passed
: False
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
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 | import re from typing import List from datetime import timedelta def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments def merge(transcript_segments: List[tuple]) -> List[str]: sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text.endswith("."): current_sentence += text + " " sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += text + " " if current_sentence: sentences.append(current_sentence.strip()) return sentences |
I extracted the following code from that output:
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 | import re from typing import List from datetime import timedelta def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments def merge(transcript_segments: List[tuple]) -> List[str]: sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text.endswith("."): current_sentence += text + " " sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += text + " " if current_sentence: sentences.append(current_sentence.strip()) return sentences |
Running the following program:
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 | import re from typing import List from datetime import timedelta def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments def merge(transcript_segments: List[tuple]) -> List[str]: sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text.endswith("."): current_sentence += text + " " sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += text + " " if current_sentence: sentences.append(current_sentence.strip()) return sentences def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n") expected = [' the robustness of neural networks.', ' And this is joint'] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
Traceback (most recent call last):
File "/usr/src/app/main.py", line 52, in <module>
answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 23, in merge
for start_seconds, end_seconds, text in transcript_segments:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: not enough values to unpack (expected 3, got 1)
Testing if the previous output contains the string All tests passed
: False
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
Given a parse function like def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments for data like [00:00:14.240 --> 00:00:14.420] the [00:00:14.420 --> 00:00:14.860] robust [00:00:14.860 --> 00:00:15.020] ness [00:00:15.020 --> 00:00:15.140] of [00:00:15.140 --> 00:00:15.500] neural [00:00:15.500 --> 00:00:15.870] networks [00:00:15.870 --> 00:00:16.200] . [00:00:16.200 --> 00:00:16.410] And [00:00:16.410 --> 00:00:16.700] this [00:00:16.700 --> 00:00:16.840] is [00:00:16.840 --> 00:00:17.200] joint write a merge() function that (1) calls parse and (2) merges words into sentences that end in period. Start with the first word and end with the period. Return a list of strings.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text[-1] == ".": current_sentence += " " + text sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += " " + text return sentences |
I extracted the following code from that output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text[-1] == ".": current_sentence += " " + text sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += " " + text return sentences |
Running the following program:
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 | def merge(content): transcript_segments = parse_transcript(content) sentences = [] current_sentence = "" for start_seconds, end_seconds, text in transcript_segments: if text[-1] == ".": current_sentence += " " + text sentences.append(current_sentence.strip()) current_sentence = "" else: current_sentence += " " + text return sentences def parse_transcript(content): transcript_segments = [] pattern = r'\[(\d{2}:\d{2}:\d{2}\.\d{3}) --> (\d{2}:\d{2}:\d{2}\.\d{3})\] (.*)' matches = re.findall(pattern, content) for start_time, end_time, text in matches: start_seconds = timedelta(hours=int(start_time[:2]), minutes=int(start_time[3:5]), seconds=int(start_time[6:8]), milliseconds=int(start_time[9:])).total_seconds() end_seconds = timedelta(hours=int(end_time[:2]), minutes=int(end_time[3:5]), seconds=int(end_time[6:8]), milliseconds=int(end_time[9:])).total_seconds() transcript_segments.append((start_seconds, end_seconds, text)) return transcript_segments answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n") expected = [' the robustness of neural networks.', ' And this is joint'] assert answer == expected, f'Wrong answer; got {answer} instead of {expected}' print('All tests passed') |
Traceback (most recent call last):
File "/usr/src/app/main.py", line 33, in <module>
answer = merge("[00:00:14.240 --> 00:00:14.420] the\n[00:00:14.420 --> 00:00:14.860] robust\n[00:00:14.860 --> 00:00:15.020] ness\n[00:00:15.020 --> 00:00:15.140] of\n[00:00:15.140 --> 00:00:15.500] neural\n[00:00:15.500 --> 00:00:15.870] networks\n[00:00:15.870 --> 00:00:16.200] .\n[00:00:16.200 --> 00:00:16.410] And\n[00:00:16.410 --> 00:00:16.700] this\n[00:00:16.700 --> 00:00:16.840] is\n[00:00:16.840 --> 00:00:17.200] joint\n")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 3, in merge
transcript_segments = parse_transcript(content)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/app/main.py", line 23, in parse_transcript
matches = re.findall(pattern, content)
^^
NameError: name 're' is not defined
Testing if the previous output contains the string All tests passed
: False