SYMBOL INDEX (56 symbols across 14 files) FILE: coding/python/binary_search.py function binary_search (line 7) | def binary_search(arr: List[int], lb: int, ub: int, target: int) -> Opti... function generate_random_list (line 22) | def generate_random_list(size: int = 10, lower: int = 1, upper: int = 50... function find_target_in_list (line 26) | def find_target_in_list(target: int, lst: List[int]) -> int: function main (line 30) | def main(): FILE: coding/python/merge_sort.py function merge_sort (line 7) | def merge_sort(arr: List[int]) -> List[int]: function merge (line 16) | def merge(left: List[int], right: List[int]) -> List[int]: function generate_random_list (line 31) | def generate_random_list(size: int = 10, lower: int = 1, upper: int = 10... function main (line 35) | def main(): FILE: scripts/aws s3 event triggering/s3-lambda/s3-lambda.py function lambda_handler (line 5) | def lambda_handler(event, context): FILE: scripts/question_utils.py function get_file_content (line 18) | def get_file_content() -> str: function get_question_list (line 23) | def get_question_list(file_content: str) -> List[str]: function get_answered_questions (line 32) | def get_answered_questions(file_content: str) -> List[str]: function get_answers_count (line 48) | def get_answers_count() -> List[int]: function get_challenges_count (line 55) | def get_challenges_count() -> int: function get_random_question (line 59) | def get_random_question(question_list: List[str], with_answer: bool = Fa... FILE: scripts/random_question.py function main (line 6) | def main(): FILE: tests/scripts_question_utils_unittest.py function open_test_case_file (line 7) | def open_test_case_file(n: int) -> List[bytes]: class QuestionCount (line 15) | class QuestionCount(unittest.TestCase): method test_case_1 (line 17) | def test_case_1(self): method test_case_2 (line 25) | def test_case_2(self): FILE: tests/syntax_checker_unittest.py function open_test_case_file (line 12) | def open_test_case_file(n: int) -> List[bytes]: class TestSyntax (line 25) | class TestSyntax(TestCase): method test_details_count_case1 (line 27) | def test_details_count_case1(self): method test_details_count_case2 (line 30) | def test_details_count_case2(self): method test_details_errors_1 (line 33) | def test_details_errors_1(self): method test_details_errors_2 (line 37) | def test_details_errors_2(self): FILE: tests/syntax_lint.py function count_details (line 22) | def count_details(file_list): function count_summary (line 40) | def count_summary(file_list): function check_details_tag (line 58) | def check_details_tag(file_list): function check_summary_tag (line 95) | def check_summary_tag(file_list): function check_md_file (line 136) | def check_md_file(file_name): FILE: topics/flask_container_ci/app/main.py function index (line 21) | def index(): function all_users (line 32) | def all_users(): function user_data (line 37) | def user_data(username): function user_something (line 45) | def user_something(username): function pretty_json (line 49) | def pretty_json(arg): function create_test_app (line 55) | def create_test_app(): FILE: topics/flask_container_ci/app/tests.py class TestCase (line 12) | class TestCase(unittest.TestCase): method setUp (line 14) | def setUp(self): method tearDown (line 22) | def tearDown(self): FILE: topics/flask_container_ci/tests.py class TestCase (line 9) | class TestCase(unittest.TestCase): method setUp (line 11) | def setUp(self): method test_main_page (line 14) | def test_main_page(self): method test_users_page (line 18) | def test_users_page(self): FILE: topics/flask_container_ci2/app/main.py function index (line 17) | def index(): function matrix (line 30) | def matrix(matrix): function column (line 36) | def column(matrix, column_number): function row (line 42) | def row(matrix, row_number): function pretty_json (line 47) | def pretty_json(arg): FILE: topics/flask_container_ci2/app/tests.py class TestCase (line 12) | class TestCase(unittest.TestCase): method setUp (line 14) | def setUp(self): method tearDown (line 22) | def tearDown(self): FILE: topics/flask_container_ci2/tests.py class TestCase (line 9) | class TestCase(unittest.TestCase): method setUp (line 11) | def setUp(self): method test_main_page (line 14) | def test_main_page(self): method test_matrix (line 18) | def test_matrix(self):