├── .gitignore ├── 1 Algorithmic Toolbox ├── 1 Programming Challenges │ ├── 1_sum_of_two_digits │ │ └── a_plus_b.py │ ├── 2_maximum_pairwise_product │ │ └── max_pairwise_product.py │ └── week1_programming_challenges.pdf ├── 2 Algorithmic Warm-up │ ├── 0_lectures │ │ ├── 1 Why Study Algorithms.pdf │ │ ├── 2 Fibonacci Numbers.pdf │ │ ├── 3 Greatest Common Divisor.pdf │ │ ├── 4 Big-O Notation.pdf │ │ └── 5 Course Overview.pdf │ ├── 1_fibonacci_number │ │ ├── fibonacci.py │ │ └── fibonacci_2.py │ ├── 2_last_digit_of_fibonacci_number │ │ ├── fibonacci_last_digit.py │ │ └── fibonacci_last_digit_2.py │ ├── 3_greatest_common_divisor │ │ └── gcd.py │ ├── 4_least_common_multiple │ │ └── lcm.py │ ├── 5_fibonacci_number_again │ │ └── fibonacci_huge.py │ ├── 6_last_digit_of_the_sum_of_fibonacci_numbers │ │ └── fibonacci_sum_last.py │ ├── 7_last_digit_of_the_sum_of_fibonacci_numbers_again │ │ └── fibonacci_part_sum_last.py │ ├── 8_last_digit_of_the_sum_of_squares_of_fibonacci_numbers │ │ └── fibonacci_sum_squares_last.py │ └── week2_algorithmic_warmup.pdf ├── 3 Greedy Algorithms │ ├── 0_lectures │ │ ├── 1 Introduction.pdf │ │ ├── 2 Grouping Children.pdf │ │ ├── 3 Fractional Knapsack.pdf │ │ └── 4 Review of Greedy Algorithms.pdf │ ├── 1_money_change │ │ ├── change.py │ │ └── change_2.py │ ├── 2_maximum_value_of_the_loot │ │ ├── loot.py │ │ └── loot_2.py │ ├── 3_car_fueling │ │ └── car_fueling.py │ ├── 4_maximum_advertisement_revenue │ │ └── dot_product.py │ ├── 5_collecting_signatures │ │ └── covering_segments.py │ ├── 6_maximum_number_of_prizes │ │ └── different_summands.py │ ├── 7_maximum_salary │ │ └── largest_number.py │ └── week3_greedy_algorithms.pdf ├── 4 Divide-and-Conquer │ ├── 0_lectures │ │ ├── 1 Introduction.pdf │ │ ├── 2 Polynomial Multiplication.pdf │ │ ├── 3 Master Theorem.pdf │ │ ├── 4 Sorting Problem.pdf │ │ └── 5 Quick Sort.pdf │ ├── 1_binary_search │ │ └── binary_search.py │ ├── 2_majority_element │ │ └── majority_element.py │ ├── 3_improving_quicksort │ │ └── sorting.py │ ├── 4_merge_sort │ │ └── merge_sort.py │ ├── 5_number_of_inversions │ │ └── inversions.py │ ├── 6_organizing_a_lottery │ │ └── points_and_segments.py │ ├── 7_closest_points │ │ └── closest.py │ └── week4_divide_and_conquer.pdf └── 5 Dynamic Programming │ ├── 0_lectures │ ├── 1 Change Problem.pdf │ ├── 2 String Comparison.pdf │ ├── 3 Knapsack.pdf │ ├── 4 Placing parentheses.pdf │ └── dynprog.pdf │ ├── 1_money_change_again │ └── change_dp.py │ ├── 2_primitive_calculator │ └── primitive_calculator.py │ ├── 3_edit_distance │ └── edit_distance.py │ ├── 4_longest_common_subsequence_of_two_sequences │ ├── lcs2.py │ └── lcs2_dim.py │ ├── 5_longest_common_subsequence_of_three_sequences │ └── lcs3.py │ ├── 6_maximum_amount_of_gold │ └── knapsack.py │ ├── 7_partitioning_souvenirs │ └── partition3.py │ ├── 8_maximum_value_of_an_arithmetic_expression │ └── placing_parentheses.py │ ├── week5_dynamic_programming.pdf │ └── week6_dynamic_programming.pdf ├── 2 Data Structures ├── 1 Basic Data Structures │ ├── 0_lectures │ │ ├── 1_arrays_and_lists.pdf │ │ ├── 2_stacks_and_queues.pdf │ │ ├── 3_trees.pdf │ │ └── 4_dynamic_arrays_and_amoritezed_analysis.pdf │ ├── 1_brackets_in_code │ │ ├── check_brackets.py │ │ └── tests │ │ │ ├── 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 │ │ │ ├── 01 │ │ │ ├── 01.a │ │ │ ├── 02 │ │ │ ├── 02.a │ │ │ ├── 03 │ │ │ ├── 03.a │ │ │ ├── 04 │ │ │ ├── 04.a │ │ │ ├── 05 │ │ │ ├── 05.a │ │ │ ├── 06 │ │ │ ├── 06.a │ │ │ ├── 07 │ │ │ ├── 07.a │ │ │ ├── 08 │ │ │ ├── 08.a │ │ │ ├── 09 │ │ │ ├── 09.a │ │ │ ├── 10.a │ │ │ ├── 11.a │ │ │ ├── 12.a │ │ │ ├── 13.a │ │ │ ├── 14.a │ │ │ ├── 15.a │ │ │ ├── 16.a │ │ │ ├── 17.a │ │ │ ├── 18.a │ │ │ ├── 19.a │ │ │ ├── 20.a │ │ │ ├── 21.a │ │ │ ├── 22.a │ │ │ ├── 23.a │ │ │ ├── 24.a │ │ │ ├── 25.a │ │ │ ├── 26.a │ │ │ ├── 27.a │ │ │ ├── 28.a │ │ │ ├── 29.a │ │ │ ├── 30.a │ │ │ ├── 31.a │ │ │ ├── 32.a │ │ │ ├── 33.a │ │ │ ├── 34.a │ │ │ ├── 35.a │ │ │ ├── 36.a │ │ │ ├── 37.a │ │ │ ├── 38.a │ │ │ ├── 39.a │ │ │ ├── 40.a │ │ │ ├── 41.a │ │ │ ├── 42.a │ │ │ ├── 43.a │ │ │ ├── 44.a │ │ │ ├── 45.a │ │ │ ├── 46.a │ │ │ ├── 47.a │ │ │ ├── 48.a │ │ │ ├── 49.a │ │ │ ├── 50.a │ │ │ ├── 51.a │ │ │ ├── 52.a │ │ │ ├── 53.a │ │ │ └── 54.a │ ├── 2_tree_height │ │ ├── get_tree_height.py │ │ ├── tests │ │ │ ├── 10 │ │ │ ├── 11 │ │ │ ├── 12 │ │ │ ├── 13 │ │ │ ├── 14 │ │ │ ├── 15 │ │ │ ├── 16 │ │ │ ├── 17 │ │ │ ├── 18 │ │ │ ├── 19 │ │ │ ├── 20 │ │ │ ├── 21 │ │ │ ├── 22 │ │ │ ├── 23 │ │ │ ├── 24 │ │ │ ├── 01 │ │ │ ├── 01.a │ │ │ ├── 02 │ │ │ ├── 02.a │ │ │ ├── 03 │ │ │ ├── 03.a │ │ │ ├── 04 │ │ │ ├── 04.a │ │ │ ├── 05 │ │ │ ├── 05.a │ │ │ ├── 06 │ │ │ ├── 06.a │ │ │ ├── 07 │ │ │ ├── 07.a │ │ │ ├── 08 │ │ │ ├── 08.a │ │ │ ├── 09 │ │ │ ├── 09.a │ │ │ ├── 10.a │ │ │ ├── 11.a │ │ │ ├── 12.a │ │ │ ├── 13.a │ │ │ ├── 14.a │ │ │ ├── 15.a │ │ │ ├── 16.a │ │ │ ├── 17.a │ │ │ ├── 18.a │ │ │ ├── 19.a │ │ │ ├── 20.a │ │ │ ├── 21.a │ │ │ ├── 22.a │ │ │ ├── 23.a │ │ │ └── 24.a │ │ └── tree_height.py │ ├── 3_network_simulation │ │ ├── process_packages.py │ │ └── tests │ │ │ ├── 10 │ │ │ ├── 11 │ │ │ ├── 12 │ │ │ ├── 13 │ │ │ ├── 14 │ │ │ ├── 15 │ │ │ ├── 16 │ │ │ ├── 17 │ │ │ ├── 18 │ │ │ ├── 19 │ │ │ ├── 20 │ │ │ ├── 21 │ │ │ ├── 22 │ │ │ ├── 01 │ │ │ ├── 01.a │ │ │ ├── 02 │ │ │ ├── 02.a │ │ │ ├── 03 │ │ │ ├── 03.a │ │ │ ├── 04 │ │ │ ├── 04.a │ │ │ ├── 05 │ │ │ ├── 05.a │ │ │ ├── 06 │ │ │ ├── 06.a │ │ │ ├── 07 │ │ │ ├── 07.a │ │ │ ├── 08 │ │ │ ├── 08.a │ │ │ ├── 09 │ │ │ ├── 09.a │ │ │ ├── 10.a │ │ │ ├── 11.a │ │ │ ├── 12.a │ │ │ ├── 13.a │ │ │ ├── 14.a │ │ │ ├── 15.a │ │ │ ├── 16.a │ │ │ ├── 17.a │ │ │ ├── 18.a │ │ │ ├── 19.a │ │ │ ├── 20.a │ │ │ ├── 21.a │ │ │ └── 22.a │ ├── 4_stack_with_max │ │ └── stack_with_max.py │ ├── 5_max_sliding_window │ │ └── max_sliding_window.py │ └── week1_basic_data_structures.pdf ├── 2 Priority Queues and Disjoint Sets │ ├── 0_lectures │ │ ├── 1_priority_queues_intro.pdf │ │ ├── 2_priority_queues_heaps.pdf │ │ ├── 3_disjoint_sets_naive.pdf │ │ └── 4_disjoint_sets_efficient.pdf │ ├── 1_make_heap │ │ ├── build_heap.py │ │ └── tests │ │ │ ├── 04 │ │ │ └── 04.a │ ├── 2_job_queue │ │ ├── job_queue.py │ │ └── tests │ │ │ ├── 02 │ │ │ ├── 02.a │ │ │ ├── 08 │ │ │ └── 08.a │ ├── 3_merging_tables │ │ ├── merging_tables.py │ │ └── tests │ │ │ ├── 116 │ │ │ └── 116.a │ └── week3_priority_queues_and_disjoint_sets.pdf ├── 3 Hash Tables │ ├── 0_lectures │ │ ├── 1_hash_tables_intro.pdf │ │ ├── 2_hash_tables_hashfunctions.pdf │ │ ├── 3_hash_tables_proof_universal_family.pdf │ │ ├── 4_hash_tables_search_substring.pdf │ │ └── 5_hash_tables_distributed_hash_tables.pdf │ ├── 1_phone_book │ │ └── phone_book.py │ ├── 2_hash_chains │ │ ├── hash_chains.py │ │ └── tests │ │ │ ├── 06 │ │ │ └── 06.a │ ├── 3_hash_substring │ │ ├── hash_substring.py │ │ └── tests │ │ │ ├── 06 │ │ │ └── 06.a │ ├── 4_substring_equality │ │ └── substring_equality.py │ ├── 5_longest_common_substring │ │ └── common_substring.py │ ├── 6_matching_with_mismatches │ │ └── matching_with_mismatches.py │ └── week4_hash_tables.pdf └── 4 Binary Search Trees │ ├── 0_lectures │ ├── 1_binary_search_trees_intro.pdf │ ├── 2_binary_search_trees.pdf │ ├── 3_binary_search_trees_basic_ops.pdf │ ├── 4_binary_search_trees_balance.pdf │ ├── 5_binary_search_trees_avl_1.pdf │ ├── 6_binary_search_trees_avl_2.pdf │ ├── 7_binary_search_trees_split_merge.pdf │ ├── 8_binary_search_trees_applications.pdf │ └── 9_binary_search_trees_splay.pdf │ ├── 1_tree_traversals │ ├── tests │ │ ├── 21 │ │ └── 21.a │ └── tree-orders.py │ ├── 2_is_bst │ └── is_bst.py │ ├── 3_is_bst_advanced │ └── is_bst_hard.py │ ├── 4_set_range_sum │ ├── set_range_sum.py │ └── tests │ │ ├── 20 │ │ ├── 36 │ │ ├── 83 │ │ ├── 01 │ │ ├── 01.a │ │ ├── 04 │ │ ├── 04.a │ │ ├── 05 │ │ ├── 05.a │ │ ├── 20.a │ │ ├── 36.a │ │ └── 83.a │ ├── 5_rope │ └── rope.py │ └── week6_binary_search_trees.pdf ├── 3 Algorithms on Graph ├── 1 Graph Decomposition │ ├── 0_lectures │ │ ├── 1_graph_decomposition_basics.pdf │ │ ├── 2_graph_decomposition_representations.pdf │ │ ├── 3_graph_decomposition_explore.pdf │ │ ├── 4_graph_decomposition_connectivity.pdf │ │ ├── 5_graph_decomposition_pre-and-post-orders.pdf │ │ ├── 6_graph_decomposition_dags.pdf │ │ ├── 7_graph_decomposition_topological-sort.pdf │ │ ├── 8_graph_decomposition_strongly-connected-components.pdf │ │ └── 9_graph_decomposition_computing-sccs.pdf │ ├── 1_finding_exit_from_maze │ │ └── reachability.py │ ├── 2_adding_exits_to_maze │ │ └── connected_components.py │ ├── 3_cs_curriculum │ │ ├── acyclicity.py │ │ ├── test1.txt │ │ └── test2.txt │ ├── 4_order_of_courses │ │ └── toposort.py │ ├── 5_intersection_reachability │ │ └── strongly_connected.py │ ├── week1_graph_decomposition1.pdf │ └── week2_graph_decomposition2.pdf ├── 2 Paths in Graphs │ ├── 0_lectures │ │ ├── 1_paths_in_graphs_bfs.pdf │ │ ├── 2_paths_in_graphs_dijkstra.pdf │ │ └── 3_paths_in_graphs_bellman_ford.pdf │ ├── 1_flight_segments │ │ └── bfs.py │ ├── 2_bipartite │ │ └── bipartite.py │ ├── 3_minimum_flight_cost │ │ └── dijkstra.py │ ├── 4_detecting_anomalies │ │ └── negative_cycle.py │ ├── 5_exchanging_money │ │ └── shortest_paths.py │ ├── week3_paths_in_graphs1.pdf │ └── week4_paths_in_graphs2.pdf ├── 3 Minimum Spanning Trees │ ├── 0_lectures │ │ └── 1_minimum_spanning_trees.pdf │ ├── 1_connecting_points │ │ └── connecting_points.py │ ├── 2_clustering │ │ └── clustering.py │ └── week5_spanning_trees.pdf └── 4 Advanced Shortest Paths │ ├── 0_lectures │ ├── 1_advanced_shortest_paths_bidirectional_dijkstra.pdf │ ├── 2_advanced_shortest_paths_A_star.pdf │ └── 3_advanced_shortest_paths_contraction_hierarchies.pdf │ ├── 1_friend_suggestion │ └── friend_suggestion.py3 │ ├── 2_dist_with_coords │ ├── dist_with_coords.py3 │ └── tests │ │ ├── 01 │ │ ├── 01.a │ │ ├── 02 │ │ ├── 02.a │ │ ├── 03 │ │ └── 03.a │ ├── 3_dist_preprocess_small │ └── dist_preprocess_small.py3 │ ├── 4_dist_preprocess_large │ └── dist_preprocess_large.py3 │ ├── 5_travelling_salesman_problem │ └── travelling_salesman_problem.py3 │ └── Advanced-Shortest-Paths.pdf ├── 4 Algorithms on Strings ├── 1 Suffix Trees │ ├── 0_lectures │ │ └── 1_suffix_trees.pdf │ ├── 1_trie │ │ ├── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ ├── sample2.a │ │ │ ├── sample3 │ │ │ └── sample3.a │ │ └── trie.py │ ├── 2_trie_matching │ │ ├── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ ├── sample2.a │ │ │ ├── sample3 │ │ │ └── sample3.a │ │ └── trie_matching.py │ ├── 3_trie_matching_extended │ │ ├── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ └── sample2.a │ │ ├── trie_matching_extended.py │ │ └── trie_matching_extended_2.py │ ├── 4_suffix_tree │ │ ├── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ ├── sample2.a │ │ │ ├── sample3 │ │ │ └── sample3.a │ │ └── suffix_tree.py │ ├── 5_non_shared_substring │ │ ├── non_shared_substring.py │ │ └── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ ├── sample2.a │ │ │ ├── sample3 │ │ │ ├── sample3.a │ │ │ ├── sample4 │ │ │ └── sample4.a │ └── Programming-Assignment-1.pdf ├── 2 Burrows-Wheeler Transform and Suffix Arrays │ ├── 0_lectures │ │ ├── 1_bwt_and_suffix_arrays.pdf │ │ └── 2_suffix_array_matching_algorithm.pdf │ ├── 1_bwt │ │ ├── bwt.py │ │ └── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ ├── sample2.a │ │ │ ├── sample3 │ │ │ └── sample3.a │ ├── 2_bwtinverse │ │ ├── bwtinverse.py │ │ └── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ └── sample2.a │ ├── 3_bwmatching │ │ ├── bwmatching.py │ │ └── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ ├── sample2.a │ │ │ ├── sample3 │ │ │ └── sample3.a │ ├── 4_suffix_array │ │ ├── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ ├── sample2.a │ │ │ ├── sample3 │ │ │ └── sample3.a │ │ └── suffix_array.py │ └── Programming-Assignment-2.pdf ├── 3 Knuth-Morris-Pratt Algorithm │ ├── 0_lectures │ │ └── 1_knuth_morris_pratt.pdf │ ├── 1_kmp │ │ ├── kmp.py │ │ └── sample_tests │ │ │ ├── sample1 │ │ │ ├── sample1.a │ │ │ ├── sample2 │ │ │ ├── sample2.a │ │ │ ├── sample3 │ │ │ └── sample3.a │ └── Programming-Assignment-3.pdf └── 4 Constructing Suffix Arrays and Suffix Trees │ ├── 0_lectures │ ├── 1_suffix_array.pdf │ └── 2_from_suffix_array_to_suffix_tree.pdf │ ├── 1_suffix_array_long │ ├── sample_tests │ │ ├── sample1 │ │ ├── sample1.a │ │ ├── sample2 │ │ ├── sample2.a │ │ ├── sample3 │ │ ├── sample3.a │ │ ├── sample4 │ │ └── sample4.a │ └── suffix_array_long.py │ ├── 2_suffix_array_matching │ ├── sample_tests │ │ ├── sample1 │ │ ├── sample1.a │ │ ├── sample2 │ │ ├── sample2.a │ │ ├── sample3 │ │ └── sample3.a │ └── suffix_array_matching.py │ ├── 3_suffix_tree_from_array │ ├── sample_tests │ │ ├── sample1 │ │ ├── sample1.a │ │ ├── sample2 │ │ ├── sample2.a │ │ ├── sample3 │ │ └── sample3.a │ └── suffix_tree_from_array.py │ └── Programming-Assignment-3.pdf ├── 5 Advanced Algorithms and Complexity ├── 1 Flow in Networks │ ├── 0_lectures │ │ ├── 1_transporting_goods.pdf │ │ ├── 2_network_flows.pdf │ │ ├── 3_residual_networks.pdf │ │ ├── 4_maxflow_mincut.pdf │ │ ├── 5_ford_fulkerson.pdf │ │ ├── 6_example.pdf │ │ ├── 7_edmonds_karp.pdf │ │ ├── 8_bipartite_matching.pdf │ │ └── 9_image_segmentation.pdf │ ├── 1_evacuation │ │ ├── evacuation.py │ │ └── tests │ │ │ ├── 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 │ │ │ ├── 01 │ │ │ ├── 01.a │ │ │ ├── 02 │ │ │ ├── 02.a │ │ │ ├── 03 │ │ │ ├── 03.a │ │ │ ├── 04 │ │ │ ├── 04.a │ │ │ ├── 05 │ │ │ ├── 05.a │ │ │ ├── 06 │ │ │ ├── 06.a │ │ │ ├── 07 │ │ │ ├── 07.a │ │ │ ├── 08 │ │ │ ├── 08.a │ │ │ ├── 09 │ │ │ ├── 09.a │ │ │ ├── 10.a │ │ │ ├── 11.a │ │ │ ├── 12.a │ │ │ ├── 13.a │ │ │ ├── 14.a │ │ │ ├── 15.a │ │ │ ├── 16.a │ │ │ ├── 17.a │ │ │ ├── 18.a │ │ │ ├── 19.a │ │ │ ├── 20.a │ │ │ ├── 21.a │ │ │ ├── 22.a │ │ │ ├── 23.a │ │ │ ├── 24.a │ │ │ ├── 25.a │ │ │ ├── 26.a │ │ │ ├── 27.a │ │ │ ├── 28.a │ │ │ ├── 29.a │ │ │ ├── 30.a │ │ │ ├── 31.a │ │ │ ├── 32.a │ │ │ ├── 33.a │ │ │ ├── 34.a │ │ │ ├── 35.a │ │ │ └── 36.a │ ├── 2_airline_crews │ │ ├── airline_crews.py │ │ └── tests │ │ │ ├── 10 │ │ │ ├── 11 │ │ │ ├── 12 │ │ │ ├── 13 │ │ │ ├── 14 │ │ │ ├── 15 │ │ │ ├── 16 │ │ │ ├── 17 │ │ │ ├── 18 │ │ │ ├── 19 │ │ │ ├── 20 │ │ │ ├── 21 │ │ │ ├── 22 │ │ │ ├── 23 │ │ │ ├── 24 │ │ │ ├── 25 │ │ │ ├── 26 │ │ │ ├── 27 │ │ │ ├── 28 │ │ │ ├── 29 │ │ │ ├── 30 │ │ │ ├── 31 │ │ │ ├── 01 │ │ │ ├── 01.a │ │ │ ├── 02 │ │ │ ├── 02.a │ │ │ ├── 03 │ │ │ ├── 03.a │ │ │ ├── 04 │ │ │ ├── 04.a │ │ │ ├── 05 │ │ │ ├── 05.a │ │ │ ├── 06 │ │ │ ├── 06.a │ │ │ ├── 07 │ │ │ ├── 07.a │ │ │ ├── 08 │ │ │ ├── 08.a │ │ │ ├── 09 │ │ │ ├── 09.a │ │ │ ├── 10.a │ │ │ ├── 11.a │ │ │ ├── 12.a │ │ │ ├── 13.a │ │ │ ├── 14.a │ │ │ ├── 15.a │ │ │ ├── 16.a │ │ │ ├── 17.a │ │ │ ├── 18.a │ │ │ ├── 19.a │ │ │ ├── 20.a │ │ │ ├── 21.a │ │ │ ├── 22.a │ │ │ ├── 23.a │ │ │ ├── 24.a │ │ │ ├── 25.a │ │ │ ├── 26.a │ │ │ ├── 27.a │ │ │ ├── 28.a │ │ │ ├── 29.a │ │ │ ├── 30.a │ │ │ └── 31.a │ ├── 3_stock_charts │ │ ├── stock_charts.py │ │ └── tests │ │ │ ├── 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 │ │ │ ├── 01 │ │ │ ├── 01.a │ │ │ ├── 02 │ │ │ ├── 02.a │ │ │ ├── 03 │ │ │ ├── 03.a │ │ │ ├── 04 │ │ │ ├── 04.a │ │ │ ├── 05 │ │ │ ├── 05.a │ │ │ ├── 06 │ │ │ ├── 06.a │ │ │ ├── 07 │ │ │ ├── 07.a │ │ │ ├── 08 │ │ │ ├── 08.a │ │ │ ├── 09 │ │ │ ├── 09.a │ │ │ ├── 10.a │ │ │ ├── 11.a │ │ │ ├── 12.a │ │ │ ├── 13.a │ │ │ ├── 14.a │ │ │ ├── 15.a │ │ │ ├── 16.a │ │ │ ├── 17.a │ │ │ ├── 18.a │ │ │ ├── 19.a │ │ │ ├── 20.a │ │ │ ├── 21.a │ │ │ ├── 22.a │ │ │ ├── 23.a │ │ │ ├── 24.a │ │ │ ├── 25.a │ │ │ ├── 26.a │ │ │ ├── 27.a │ │ │ ├── 28.a │ │ │ ├── 29.a │ │ │ ├── 30.a │ │ │ ├── 31.a │ │ │ ├── 32.a │ │ │ ├── 33.a │ │ │ ├── 34.a │ │ │ ├── 35.a │ │ │ └── 36.a │ └── Programming-Assignment-1.pdf ├── 2 Linear Programming │ ├── 0_lectures │ │ ├── 1_1_introduction.pdf │ │ ├── 1_2_LP.pdf │ │ ├── 2_0_GaussianElimination.pdf │ │ ├── 2_1_Substitution.pdf │ │ ├── 2_2_GaussianElimination.pdf │ │ ├── 3_Convexity.pdf │ │ ├── 4_1_Duality.pdf │ │ ├── 4_2_DualityProofs.pdf │ │ ├── 5_Formulations.pdf │ │ ├── 6_simplex.pdf │ │ └── 7_ellipsoid.pdf │ ├── 1_energy_values │ │ └── energy_values.py │ ├── 2_diet │ │ ├── diet.py │ │ └── tests │ │ │ ├── 36 │ │ │ ├── 43 │ │ │ ├── 01 │ │ │ ├── 01.a │ │ │ ├── 02 │ │ │ ├── 02.a │ │ │ ├── 03 │ │ │ ├── 03.a │ │ │ ├── 04 │ │ │ ├── 04.a │ │ │ ├── 05 │ │ │ ├── 05.a │ │ │ ├── 06 │ │ │ ├── 06.a │ │ │ ├── 36.a │ │ │ └── 43.a │ ├── 3_ad_allocation │ │ ├── ad_allocation.py │ │ └── tests │ │ │ ├── 11 │ │ │ ├── 12 │ │ │ ├── 52 │ │ │ ├── 55 │ │ │ ├── 65 │ │ │ ├── 11.a │ │ │ ├── 12.a │ │ │ ├── 52.a │ │ │ ├── 55.a │ │ │ └── 65.a │ └── Programming-Assignment-2.pdf ├── 3 NP-complete Problems │ ├── 0_lectures │ │ ├── 1_np_complete_problems_search_problems.pdf │ │ └── 2_np_complete_problems_reductions.pdf │ ├── 1_gsm_network │ │ └── gsm_network.py │ ├── 2_cleaning_apartment │ │ └── cleaning_apartment.py │ ├── 3_budget_allocation │ │ └── budget_allocation.py │ ├── Programming-Assignment-3.pdf │ └── sudokusolver.py ├── 4 Coping with NP-completeness │ ├── 0_lectures │ │ ├── 1_coping_with_np_completeness_introduction.pdf │ │ ├── 2_coping_with_np_completeness_special_cases.pdf │ │ ├── 3_coping_with_np_completeness_exact_algorithms.pdf │ │ └── 4_coping_with_np_completeness_approximation_algorithms.pdf │ ├── 1_circuit_design │ │ └── circuit_design.py │ ├── 2_plan_party │ │ └── plan_party.py │ ├── 3_school_bus │ │ └── school_bus.py │ ├── 4_reschedule_exams │ │ └── reschedule_exams.py │ └── Programming-Assignment-4.pdf └── 5 Streaming Algorithms │ ├── 0_lectures │ ├── 1_distinct_elements_and_frequency_moments_in_data_streams.pdf │ ├── 2_frequency_moments_heavy_hitters.pdf │ ├── 3_countsketch_graph_sketching_l0_samplers.pdf │ ├── 4_countsketch.pdf │ └── 5_spectral_sparsification_in_dynamic_streams.pdf │ ├── 1_nice_vs_naughty │ └── nice_vs_naughty.py │ └── ProgrammingAssignment5.pdf ├── 6 Genome Assembly ├── Homeworks │ ├── Week 1 │ │ ├── 1_small_genome_assembler_error_free.py │ │ ├── 2_small_genome_assembler_error_prone.py │ │ └── ProgrammingAssignment1.pdf │ ├── Week 2 │ │ ├── 1_puzzle_assembly.py │ │ ├── 2_eulerian_cycle.py │ │ ├── 3_k_universal_circular_string.py │ │ ├── 4_small_genome_assembler_kmer.py │ │ ├── ProgrammingAssignment2.pdf │ │ ├── phix174_10mers.txt │ │ └── phix174_genome.txt │ └── Week 3 │ │ ├── 1_network_circulation.py │ │ ├── 2_optimal_kmer_size.py │ │ ├── 3_bubble_detection.py │ │ ├── 4_tip_removal.py │ │ ├── 5_genome_error_prone_assembler.py │ │ ├── ProgrammingAssignment3.pdf │ │ ├── phix174_genome.txt │ │ └── phix174_genome_reads_with_errors.txt └── Lectures │ ├── Assembler Challenge.pdf │ └── Problem Formulations Algorithms.docx ├── Certificates ├── 1 Algorithmic Toolbox Coursera C9SUNQY4BZC5.pdf ├── 2 Data Structures Coursera SABXPUK9ZB5R.pdf ├── 3 Algorithms on Graphs Coursera N3M6PETVBP87.pdf ├── 4 Algorithms on Strings Coursera JBKQX4NVXPH9.pdf ├── 5 Advanced Algorithms and Complexity Coursera 7KXH4BYCCZ23.pdf ├── 6 Genome Assembly Coursera RTYPYQL52RUR.pdf └── Data Structures and Algorithms Coursera RL34WMTAFTQJ.pdf ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/.gitignore -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/1 Programming Challenges/1_sum_of_two_digits/a_plus_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/1 Programming Challenges/1_sum_of_two_digits/a_plus_b.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/1 Programming Challenges/week1_programming_challenges.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/1 Programming Challenges/week1_programming_challenges.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/1 Why Study Algorithms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/1 Why Study Algorithms.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/2 Fibonacci Numbers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/2 Fibonacci Numbers.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/3 Greatest Common Divisor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/3 Greatest Common Divisor.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/4 Big-O Notation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/4 Big-O Notation.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/5 Course Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/0_lectures/5 Course Overview.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/1_fibonacci_number/fibonacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/1_fibonacci_number/fibonacci.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/1_fibonacci_number/fibonacci_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/1_fibonacci_number/fibonacci_2.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/3_greatest_common_divisor/gcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/3_greatest_common_divisor/gcd.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/4_least_common_multiple/lcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/4_least_common_multiple/lcm.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/5_fibonacci_number_again/fibonacci_huge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/5_fibonacci_number_again/fibonacci_huge.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/2 Algorithmic Warm-up/week2_algorithmic_warmup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/2 Algorithmic Warm-up/week2_algorithmic_warmup.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/0_lectures/1 Introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/0_lectures/1 Introduction.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/0_lectures/2 Grouping Children.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/0_lectures/2 Grouping Children.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/0_lectures/3 Fractional Knapsack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/0_lectures/3 Fractional Knapsack.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/0_lectures/4 Review of Greedy Algorithms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/0_lectures/4 Review of Greedy Algorithms.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/1_money_change/change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/1_money_change/change.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/1_money_change/change_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/1_money_change/change_2.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/2_maximum_value_of_the_loot/loot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/2_maximum_value_of_the_loot/loot.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/2_maximum_value_of_the_loot/loot_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/2_maximum_value_of_the_loot/loot_2.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/3_car_fueling/car_fueling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/3_car_fueling/car_fueling.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/4_maximum_advertisement_revenue/dot_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/4_maximum_advertisement_revenue/dot_product.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/5_collecting_signatures/covering_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/5_collecting_signatures/covering_segments.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/6_maximum_number_of_prizes/different_summands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/6_maximum_number_of_prizes/different_summands.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/7_maximum_salary/largest_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/7_maximum_salary/largest_number.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/3 Greedy Algorithms/week3_greedy_algorithms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/3 Greedy Algorithms/week3_greedy_algorithms.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/1 Introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/1 Introduction.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/2 Polynomial Multiplication.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/2 Polynomial Multiplication.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/3 Master Theorem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/3 Master Theorem.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/4 Sorting Problem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/4 Sorting Problem.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/5 Quick Sort.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/0_lectures/5 Quick Sort.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/1_binary_search/binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/1_binary_search/binary_search.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/2_majority_element/majority_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/2_majority_element/majority_element.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/3_improving_quicksort/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/3_improving_quicksort/sorting.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/4_merge_sort/merge_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/4_merge_sort/merge_sort.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/5_number_of_inversions/inversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/5_number_of_inversions/inversions.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/6_organizing_a_lottery/points_and_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/6_organizing_a_lottery/points_and_segments.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/7_closest_points/closest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/7_closest_points/closest.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/4 Divide-and-Conquer/week4_divide_and_conquer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/4 Divide-and-Conquer/week4_divide_and_conquer.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/1 Change Problem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/1 Change Problem.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/2 String Comparison.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/2 String Comparison.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/3 Knapsack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/3 Knapsack.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/4 Placing parentheses.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/4 Placing parentheses.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/dynprog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/0_lectures/dynprog.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/1_money_change_again/change_dp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/1_money_change_again/change_dp.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/2_primitive_calculator/primitive_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/2_primitive_calculator/primitive_calculator.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/3_edit_distance/edit_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/3_edit_distance/edit_distance.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/6_maximum_amount_of_gold/knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/6_maximum_amount_of_gold/knapsack.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/7_partitioning_souvenirs/partition3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/7_partitioning_souvenirs/partition3.py -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/week5_dynamic_programming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/week5_dynamic_programming.pdf -------------------------------------------------------------------------------- /1 Algorithmic Toolbox/5 Dynamic Programming/week6_dynamic_programming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/1 Algorithmic Toolbox/5 Dynamic Programming/week6_dynamic_programming.pdf -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/0_lectures/1_arrays_and_lists.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/0_lectures/1_arrays_and_lists.pdf -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/0_lectures/2_stacks_and_queues.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/0_lectures/2_stacks_and_queues.pdf -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/0_lectures/3_trees.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/0_lectures/3_trees.pdf -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/check_brackets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/check_brackets.py -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/01: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/01.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/02: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/02.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/03: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/03.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/04: -------------------------------------------------------------------------------- 1 | {}[] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/04.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/05: -------------------------------------------------------------------------------- 1 | {}() 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/05.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/06: -------------------------------------------------------------------------------- 1 | []() 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/06.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/07: -------------------------------------------------------------------------------- 1 | [][] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/07.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/08: -------------------------------------------------------------------------------- 1 | [()] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/08.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/09: -------------------------------------------------------------------------------- 1 | (()) 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/09.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/10: -------------------------------------------------------------------------------- 1 | {{}} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/10.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/11: -------------------------------------------------------------------------------- 1 | {}[]{} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/11.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/12: -------------------------------------------------------------------------------- 1 | {[]}() 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/12.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/13: -------------------------------------------------------------------------------- 1 | [{{}}] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/13.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/14: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/14.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/15: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/15.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/16: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/16.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/17: -------------------------------------------------------------------------------- 1 | ] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/17.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/18: -------------------------------------------------------------------------------- 1 | ( 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/18.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/19: -------------------------------------------------------------------------------- 1 | ) 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/19.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/20: -------------------------------------------------------------------------------- 1 | }() 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/20.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/21: -------------------------------------------------------------------------------- 1 | {[} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/21.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/22: -------------------------------------------------------------------------------- 1 | [(] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/22.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/23: -------------------------------------------------------------------------------- 1 | (){[} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/23.a: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/24: -------------------------------------------------------------------------------- 1 | {}{}] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/24.a: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/25: -------------------------------------------------------------------------------- 1 | []({) 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/25.a: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/26: -------------------------------------------------------------------------------- 1 | [](() 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/26.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/27: -------------------------------------------------------------------------------- 1 | (({}) 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/27.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/28: -------------------------------------------------------------------------------- 1 | ({})} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/28.a: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/29: -------------------------------------------------------------------------------- 1 | [{}]{ 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/29.a: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/30: -------------------------------------------------------------------------------- 1 | ()[{}]) 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/30.a: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/31: -------------------------------------------------------------------------------- 1 | [[]}]{} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/31.a: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/32: -------------------------------------------------------------------------------- 1 | ({()(}) 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/32.a: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/33: -------------------------------------------------------------------------------- 1 | []]( 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/33.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/34: -------------------------------------------------------------------------------- 1 | {[}] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/34.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/35: -------------------------------------------------------------------------------- 1 | [}]] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/35.a: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/36: -------------------------------------------------------------------------------- 1 | ][]] 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/36.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/37: -------------------------------------------------------------------------------- 1 | {[]) 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/37.a: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/38: -------------------------------------------------------------------------------- 1 | (}{} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/38.a: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/39: -------------------------------------------------------------------------------- 1 | ({(} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/39.a: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/40: -------------------------------------------------------------------------------- 1 | [({])} 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/40.a: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/41 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/41.a: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/42: -------------------------------------------------------------------------------- 1 | [very(strong]test) 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/42.a: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/43 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/43.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/44 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/44.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/45 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/45.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/46 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/46.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/47: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/47 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/47.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/48 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/48.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/49 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/49.a: -------------------------------------------------------------------------------- 1 | 972 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/50 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/50.a: -------------------------------------------------------------------------------- 1 | 35 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/51 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/51.a: -------------------------------------------------------------------------------- 1 | 174 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/52 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/52.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/53 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/53.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/54 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/1_brackets_in_code/tests/54.a: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/get_tree_height.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/get_tree_height.py -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/01: -------------------------------------------------------------------------------- 1 | 5 2 | 4 -1 4 1 1 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/01.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/02: -------------------------------------------------------------------------------- 1 | 5 2 | -1 0 4 0 3 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/02.a: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/03 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/03.a: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/04: -------------------------------------------------------------------------------- 1 | 10 2 | 8 8 5 6 7 3 1 6 -1 5 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/04.a: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/05 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/05.a: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/06 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/06.a: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/07 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/07.a: -------------------------------------------------------------------------------- 1 | 31 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/08 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/08.a: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/09 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/09.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/10 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/10.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/11 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/11.a: -------------------------------------------------------------------------------- 1 | 70 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/12 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/12.a: -------------------------------------------------------------------------------- 1 | 34 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/13 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/13.a: -------------------------------------------------------------------------------- 1 | 51 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/14 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/14.a: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/15 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/15.a: -------------------------------------------------------------------------------- 1 | 28 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/16 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/16.a: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/17 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/17.a: -------------------------------------------------------------------------------- 1 | 27 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/18 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/18.a: -------------------------------------------------------------------------------- 1 | 1267 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/19 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/19.a: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/20 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/20.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/21 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/21.a: -------------------------------------------------------------------------------- 1 | 34. -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/22 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/22.a: -------------------------------------------------------------------------------- 1 | 66649 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/23 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/23.a: -------------------------------------------------------------------------------- 1 | 33334 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tests/24 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tests/24.a: -------------------------------------------------------------------------------- 1 | 50001 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/2_tree_height/tree_height.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/2_tree_height/tree_height.py -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/process_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/process_packages.py -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/01: -------------------------------------------------------------------------------- 1 | 1 0 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/01.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/02: -------------------------------------------------------------------------------- 1 | 1 1 2 | 0 0 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/02.a: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/03: -------------------------------------------------------------------------------- 1 | 1 1 2 | 0 1 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/03.a: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/04: -------------------------------------------------------------------------------- 1 | 1 1 2 | 1 0 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/04.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/05: -------------------------------------------------------------------------------- 1 | 1 1 2 | 1 1 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/05.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/06 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/06.a: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/07: -------------------------------------------------------------------------------- 1 | 1 2 2 | 0 0 3 | 0 1 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/07.a: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/08: -------------------------------------------------------------------------------- 1 | 1 2 2 | 0 1 3 | 0 0 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/08.a: -------------------------------------------------------------------------------- 1 | 0 2 | -1 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/09 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/09.a: -------------------------------------------------------------------------------- 1 | 0 2 | -1 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/10: -------------------------------------------------------------------------------- 1 | 1 2 2 | 0 1 3 | 1 1 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/10.a: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/11: -------------------------------------------------------------------------------- 1 | 1 2 2 | 0 1 3 | 2 1 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/11.a: -------------------------------------------------------------------------------- 1 | 0 2 | 2 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/12 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/12.a: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/13 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/13.a: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | -1 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/14: -------------------------------------------------------------------------------- 1 | 1 3 2 | 0 1 3 | 1 3 4 | 4 2 5 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/14.a: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 4 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/15: -------------------------------------------------------------------------------- 1 | 1 3 2 | 0 2 3 | 1 4 4 | 5 3 5 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/15.a: -------------------------------------------------------------------------------- 1 | 0 2 | -1 3 | 5 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/16: -------------------------------------------------------------------------------- 1 | 2 3 2 | 0 2 3 | 1 4 4 | 5 3 5 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/16.a: -------------------------------------------------------------------------------- 1 | 0 2 | 2 3 | 6 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/17 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/17.a: -------------------------------------------------------------------------------- 1 | 0 2 | 2 3 | 4 4 | 6 5 | 8 6 | -1 7 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/18 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/18.a: -------------------------------------------------------------------------------- 1 | 0 2 | 3 3 | 10 4 | -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/19 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/19.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/19.a -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/20 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/20.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/20.a -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/21 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/21.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/21.a -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/22 -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/22.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/3_network_simulation/tests/22.a -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/4_stack_with_max/stack_with_max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/4_stack_with_max/stack_with_max.py -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/5_max_sliding_window/max_sliding_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/5_max_sliding_window/max_sliding_window.py -------------------------------------------------------------------------------- /2 Data Structures/1 Basic Data Structures/week1_basic_data_structures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/1 Basic Data Structures/week1_basic_data_structures.pdf -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/0_lectures/3_disjoint_sets_naive.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/0_lectures/3_disjoint_sets_naive.pdf -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/1_make_heap/build_heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/1_make_heap/build_heap.py -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/1_make_heap/tests/04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/1_make_heap/tests/04 -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/1_make_heap/tests/04.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/1_make_heap/tests/04.a -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/job_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/job_queue.py -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/tests/02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/tests/02 -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/tests/02.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/tests/02.a -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/tests/08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/tests/08 -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/tests/08.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/2_job_queue/tests/08.a -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/3_merging_tables/merging_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/3_merging_tables/merging_tables.py -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/3_merging_tables/tests/116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/3_merging_tables/tests/116 -------------------------------------------------------------------------------- /2 Data Structures/2 Priority Queues and Disjoint Sets/3_merging_tables/tests/116.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/2 Priority Queues and Disjoint Sets/3_merging_tables/tests/116.a -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/0_lectures/1_hash_tables_intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/0_lectures/1_hash_tables_intro.pdf -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/0_lectures/2_hash_tables_hashfunctions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/0_lectures/2_hash_tables_hashfunctions.pdf -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/0_lectures/3_hash_tables_proof_universal_family.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/0_lectures/3_hash_tables_proof_universal_family.pdf -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/0_lectures/4_hash_tables_search_substring.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/0_lectures/4_hash_tables_search_substring.pdf -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/0_lectures/5_hash_tables_distributed_hash_tables.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/0_lectures/5_hash_tables_distributed_hash_tables.pdf -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/1_phone_book/phone_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/1_phone_book/phone_book.py -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/2_hash_chains/hash_chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/2_hash_chains/hash_chains.py -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/2_hash_chains/tests/06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/2_hash_chains/tests/06 -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/2_hash_chains/tests/06.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/2_hash_chains/tests/06.a -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/3_hash_substring/hash_substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/3_hash_substring/hash_substring.py -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/3_hash_substring/tests/06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/3_hash_substring/tests/06 -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/3_hash_substring/tests/06.a: -------------------------------------------------------------------------------- 1 | 19 118 178 241 296 361 417 472 2 | -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/4_substring_equality/substring_equality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/4_substring_equality/substring_equality.py -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/5_longest_common_substring/common_substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/5_longest_common_substring/common_substring.py -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/6_matching_with_mismatches/matching_with_mismatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/6_matching_with_mismatches/matching_with_mismatches.py -------------------------------------------------------------------------------- /2 Data Structures/3 Hash Tables/week4_hash_tables.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/3 Hash Tables/week4_hash_tables.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/1_binary_search_trees_intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/1_binary_search_trees_intro.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/2_binary_search_trees.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/2_binary_search_trees.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/3_binary_search_trees_basic_ops.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/3_binary_search_trees_basic_ops.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/4_binary_search_trees_balance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/4_binary_search_trees_balance.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/5_binary_search_trees_avl_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/5_binary_search_trees_avl_1.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/6_binary_search_trees_avl_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/6_binary_search_trees_avl_2.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/7_binary_search_trees_split_merge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/7_binary_search_trees_split_merge.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/8_binary_search_trees_applications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/8_binary_search_trees_applications.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/0_lectures/9_binary_search_trees_splay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/0_lectures/9_binary_search_trees_splay.pdf -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/1_tree_traversals/tests/21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/1_tree_traversals/tests/21 -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/1_tree_traversals/tests/21.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/1_tree_traversals/tests/21.a -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/1_tree_traversals/tree-orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/1_tree_traversals/tree-orders.py -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/2_is_bst/is_bst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/2_is_bst/is_bst.py -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/3_is_bst_advanced/is_bst_hard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/3_is_bst_advanced/is_bst_hard.py -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/set_range_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/set_range_sum.py -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/01 -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/01.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/01.a -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/04 -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/04.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/04.a -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/05 -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/05.a: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | 234423189 4 | 934598870 5 | -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/20 -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/20.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/20.a -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/36 -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/36.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/36.a -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/83: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/83 -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/83.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/4_set_range_sum/tests/83.a -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/5_rope/rope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/5_rope/rope.py -------------------------------------------------------------------------------- /2 Data Structures/4 Binary Search Trees/week6_binary_search_trees.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/2 Data Structures/4 Binary Search Trees/week6_binary_search_trees.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/0_lectures/1_graph_decomposition_basics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/0_lectures/1_graph_decomposition_basics.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/0_lectures/3_graph_decomposition_explore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/0_lectures/3_graph_decomposition_explore.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/0_lectures/6_graph_decomposition_dags.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/0_lectures/6_graph_decomposition_dags.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/1_finding_exit_from_maze/reachability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/1_finding_exit_from_maze/reachability.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/3_cs_curriculum/acyclicity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/3_cs_curriculum/acyclicity.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/3_cs_curriculum/test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/3_cs_curriculum/test1.txt -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/3_cs_curriculum/test2.txt: -------------------------------------------------------------------------------- 1 | 4 4 2 | 1 2 3 | 4 1 4 | 2 3 5 | 3 1 6 | -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/4_order_of_courses/toposort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/4_order_of_courses/toposort.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/week1_graph_decomposition1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/week1_graph_decomposition1.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/1 Graph Decomposition/week2_graph_decomposition2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/1 Graph Decomposition/week2_graph_decomposition2.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/0_lectures/1_paths_in_graphs_bfs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/0_lectures/1_paths_in_graphs_bfs.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/0_lectures/2_paths_in_graphs_dijkstra.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/0_lectures/2_paths_in_graphs_dijkstra.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/0_lectures/3_paths_in_graphs_bellman_ford.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/0_lectures/3_paths_in_graphs_bellman_ford.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/1_flight_segments/bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/1_flight_segments/bfs.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/2_bipartite/bipartite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/2_bipartite/bipartite.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/3_minimum_flight_cost/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/3_minimum_flight_cost/dijkstra.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/4_detecting_anomalies/negative_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/4_detecting_anomalies/negative_cycle.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/5_exchanging_money/shortest_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/5_exchanging_money/shortest_paths.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/week3_paths_in_graphs1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/week3_paths_in_graphs1.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/2 Paths in Graphs/week4_paths_in_graphs2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/2 Paths in Graphs/week4_paths_in_graphs2.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/3 Minimum Spanning Trees/0_lectures/1_minimum_spanning_trees.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/3 Minimum Spanning Trees/0_lectures/1_minimum_spanning_trees.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/3 Minimum Spanning Trees/1_connecting_points/connecting_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/3 Minimum Spanning Trees/1_connecting_points/connecting_points.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/3 Minimum Spanning Trees/2_clustering/clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/3 Minimum Spanning Trees/2_clustering/clustering.py -------------------------------------------------------------------------------- /3 Algorithms on Graph/3 Minimum Spanning Trees/week5_spanning_trees.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/3 Minimum Spanning Trees/week5_spanning_trees.pdf -------------------------------------------------------------------------------- /3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/dist_with_coords.py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/dist_with_coords.py3 -------------------------------------------------------------------------------- /3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/01 -------------------------------------------------------------------------------- /3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/01.a: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | 1 4 | -1 5 | -------------------------------------------------------------------------------- /3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/02 -------------------------------------------------------------------------------- /3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/02.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/02.a -------------------------------------------------------------------------------- /3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/03 -------------------------------------------------------------------------------- /3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/03.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/4 Advanced Shortest Paths/2_dist_with_coords/tests/03.a -------------------------------------------------------------------------------- /3 Algorithms on Graph/4 Advanced Shortest Paths/Advanced-Shortest-Paths.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/3 Algorithms on Graph/4 Advanced Shortest Paths/Advanced-Shortest-Paths.pdf -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/0_lectures/1_suffix_trees.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/0_lectures/1_suffix_trees.pdf -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/1_trie/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | 1 2 | ATA 3 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/1_trie/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | 0->1:A 2 | 2->3:A 3 | 1->2:T -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/1_trie/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | 3 2 | AT 3 | AG 4 | AC 5 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/1_trie/sample_tests/sample2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/1_trie/sample_tests/sample2.a -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/1_trie/sample_tests/sample3: -------------------------------------------------------------------------------- 1 | 3 2 | ATAGA 3 | ATC 4 | GAT 5 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/1_trie/sample_tests/sample3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/1_trie/sample_tests/sample3.a -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/1_trie/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/1_trie/trie.py -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | AAA 2 | 1 3 | AA 4 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | 0 1 -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | AA 2 | 1 3 | T 4 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/sample_tests/sample3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/sample_tests/sample3 -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/sample_tests/sample3.a: -------------------------------------------------------------------------------- 1 | 1 4 11 15 -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/trie_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/2_trie_matching/trie_matching.py -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/3_trie_matching_extended/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | AAA 2 | 1 3 | AA 4 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/3_trie_matching_extended/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | 0 1 -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/3_trie_matching_extended/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | ACATA 2 | 3 3 | AT 4 | A 5 | AG 6 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/3_trie_matching_extended/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | 0 2 4 -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | A$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | A$ 2 | $ 3 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | ACA$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/sample_tests/sample2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/sample_tests/sample2.a -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/sample_tests/sample3: -------------------------------------------------------------------------------- 1 | ATAAATG$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/sample_tests/sample3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/sample_tests/sample3.a -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/suffix_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/4_suffix_tree/suffix_tree.py -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/non_shared_substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/non_shared_substring.py -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | A 2 | T 3 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | A 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample2 -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample3 -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample3.a: -------------------------------------------------------------------------------- 1 | AA -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample4 -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/5_non_shared_substring/sample_tests/sample4.a: -------------------------------------------------------------------------------- 1 | ATG 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/1 Suffix Trees/Programming-Assignment-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/1 Suffix Trees/Programming-Assignment-1.pdf -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/1_bwt/bwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/1_bwt/bwt.py -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/1_bwt/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | AA$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/1_bwt/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | AA$ -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/1_bwt/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | stvC. -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/1_bwt/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | CCCC$AAAA -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/1_bwt/sample_tests/sample3: -------------------------------------------------------------------------------- 1 | AGACATA$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/1_bwt/sample_tests/sample3.a: -------------------------------------------------------------------------------- 1 | ATG$CAAA -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/2_bwtinverse/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | AC$A 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/2_bwtinverse/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | ACA$ -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/2_bwtinverse/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | AGGGAA$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/2_bwtinverse/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | GAGAGA$ -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/3_bwmatching/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | AGGGAA$ 2 | 1 3 | GA 4 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/3_bwmatching/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/3_bwmatching/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | ATT$AA 2 | 2 3 | ATA A 4 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/3_bwmatching/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | 2 3 -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/3_bwmatching/sample_tests/sample3.a: -------------------------------------------------------------------------------- 1 | 0 0 -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/4_suffix_array/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | GAC$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/4_suffix_array/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | 3 1 2 0 -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/4_suffix_array/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | swtC. -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/4_suffix_array/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | 8 7 5 3 1 6 4 2 0 -------------------------------------------------------------------------------- /4 Algorithms on Strings/2 Burrows-Wheeler Transform and Suffix Arrays/4_suffix_array/sample_tests/sample3: -------------------------------------------------------------------------------- 1 | AACGATAGCGGTAGA$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/kmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/kmp.py -------------------------------------------------------------------------------- /4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | TACG 2 | GT 3 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | ATA 2 | ATATA 3 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | 0 2 -------------------------------------------------------------------------------- /4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/sample_tests/sample3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/sample_tests/sample3 -------------------------------------------------------------------------------- /4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/1_kmp/sample_tests/sample3.a: -------------------------------------------------------------------------------- 1 | 1 3 9 -------------------------------------------------------------------------------- /4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/Programming-Assignment-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/4 Algorithms on Strings/3 Knuth-Morris-Pratt Algorithm/Programming-Assignment-3.pdf -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/1_suffix_array_long/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | AAA$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/1_suffix_array_long/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | 3 2 1 0 -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/1_suffix_array_long/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | GAC$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/1_suffix_array_long/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | 3 1 2 0 -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/1_suffix_array_long/sample_tests/sample3: -------------------------------------------------------------------------------- 1 | swtC. -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/1_suffix_array_long/sample_tests/sample3.a: -------------------------------------------------------------------------------- 1 | 8 7 5 3 1 6 4 2 0 -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/1_suffix_array_long/sample_tests/sample4: -------------------------------------------------------------------------------- 1 | AACGATAGCGGTAGA$ 2 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/2_suffix_array_matching/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | AAA 2 | 1 3 | A 4 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/2_suffix_array_matching/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | 0 1 2 -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/2_suffix_array_matching/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | ATA 2 | 3 3 | T G C 4 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/2_suffix_array_matching/sample_tests/sample2.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/2_suffix_array_matching/sample_tests/sample3.a: -------------------------------------------------------------------------------- 1 | 4 2 0 1 -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/3_suffix_tree_from_array/sample_tests/sample1: -------------------------------------------------------------------------------- 1 | A$ 2 | 1 0 3 | 0 4 | -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/3_suffix_tree_from_array/sample_tests/sample1.a: -------------------------------------------------------------------------------- 1 | 1 2 2 | 0 2 -------------------------------------------------------------------------------- /4 Algorithms on Strings/4 Constructing Suffix Arrays and Suffix Trees/3_suffix_tree_from_array/sample_tests/sample2: -------------------------------------------------------------------------------- 1 | AAA$ 2 | 3 2 1 0 3 | 0 1 2 4 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/2_network_flows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/2_network_flows.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/4_maxflow_mincut.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/4_maxflow_mincut.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/5_ford_fulkerson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/5_ford_fulkerson.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/6_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/6_example.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/7_edmonds_karp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/0_lectures/7_edmonds_karp.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/evacuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/evacuation.py -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/01 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/01.a: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/02 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/02.a: -------------------------------------------------------------------------------- 1 | 20000 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/03: -------------------------------------------------------------------------------- 1 | 2 0 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/03.a: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/04 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/04.a: -------------------------------------------------------------------------------- 1 | 105 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/05: -------------------------------------------------------------------------------- 1 | 2 1 2 | 1 2 10000 3 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/05.a: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/06: -------------------------------------------------------------------------------- 1 | 2 1 2 | 1 2 5 3 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/06.a: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/07 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/07.a: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/08: -------------------------------------------------------------------------------- 1 | 100 0 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/08.a: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/09 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/09.a: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/10 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/10.a: -------------------------------------------------------------------------------- 1 | 57336 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/11 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/11.a: -------------------------------------------------------------------------------- 1 | 28051 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/12 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/12.a: -------------------------------------------------------------------------------- 1 | 38017 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/13 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/13.a: -------------------------------------------------------------------------------- 1 | 120523 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/14 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/14.a: -------------------------------------------------------------------------------- 1 | 92300 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/15 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/15.a: -------------------------------------------------------------------------------- 1 | 117672 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/16 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/16.a: -------------------------------------------------------------------------------- 1 | 125322 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/17 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/17.a: -------------------------------------------------------------------------------- 1 | 145509 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/18 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/18.a: -------------------------------------------------------------------------------- 1 | 291953 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/19 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/19.a: -------------------------------------------------------------------------------- 1 | 261446 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/20 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/20.a: -------------------------------------------------------------------------------- 1 | 315167 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/21 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/21.a: -------------------------------------------------------------------------------- 1 | 287188 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/22 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/22.a: -------------------------------------------------------------------------------- 1 | 306224 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/23 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/23.a: -------------------------------------------------------------------------------- 1 | 29688 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/24 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/24.a: -------------------------------------------------------------------------------- 1 | 29600 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/25 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/25.a: -------------------------------------------------------------------------------- 1 | 79270 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/26 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/26.a: -------------------------------------------------------------------------------- 1 | 39538 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/27 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/27.a: -------------------------------------------------------------------------------- 1 | 59563 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/28 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/28.a: -------------------------------------------------------------------------------- 1 | 59410 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/29 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/29.a: -------------------------------------------------------------------------------- 1 | 29862 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/30 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/30.a: -------------------------------------------------------------------------------- 1 | 9799 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/31 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/31.a: -------------------------------------------------------------------------------- 1 | 98903 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/32 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/32.a: -------------------------------------------------------------------------------- 1 | 413507 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/33 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/33.a: -------------------------------------------------------------------------------- 1 | 405530 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/34 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/34.a: -------------------------------------------------------------------------------- 1 | 409516 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/35 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/35.a: -------------------------------------------------------------------------------- 1 | 415842 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/36 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/1_evacuation/tests/36.a: -------------------------------------------------------------------------------- 1 | 411960 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/airline_crews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/airline_crews.py -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/01 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/01.a: -------------------------------------------------------------------------------- 1 | 1 2 -1 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/02 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/02.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/02.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/03 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/03.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/03.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/04 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/04.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/04.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/05 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/05.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/05.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/06 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/06.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/06.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/07 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/07.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/07.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/08 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/08.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/08.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/09 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/09.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/09.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/10 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/10.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/10.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/11 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/11.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/11.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/12 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/12.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/12.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/13 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/13.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/14 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/14.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/14.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/15 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/15.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/15.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/16 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/16.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/16.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/17 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/17.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/17.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/18 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/18.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/18.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/19 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/19.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/19.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/20 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/20.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/20.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/21 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/21.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/21.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/22 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/22.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/22.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/23 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/23.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/23.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/24 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/24.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/24.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/25 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/25.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/25.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/26 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/26.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/26.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/27 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/27.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/27.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/28 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/28.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/28.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/29 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/29.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/29.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/30 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/30.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/30.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/31 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/31.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/2_airline_crews/tests/31.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/stock_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/stock_charts.py -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/01 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/01.a: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/02 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/02.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/03 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/03.a: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/04: -------------------------------------------------------------------------------- 1 | 2 1 2 | 0 3 | 1001 4 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/04.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/05 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/05.a: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/06 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/06.a: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/07 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/07.a: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/08 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/08.a: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/09 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/09.a: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/10 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/10.a: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/11 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/11.a: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/12 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/12.a: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/13 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/13.a: -------------------------------------------------------------------------------- 1 | 50 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/14 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/14.a: -------------------------------------------------------------------------------- 1 | 48 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/15 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/15.a: -------------------------------------------------------------------------------- 1 | 45 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/16 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/16.a: -------------------------------------------------------------------------------- 1 | 43 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/17 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/17.a: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/18 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/18.a: -------------------------------------------------------------------------------- 1 | 35 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/19 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/19.a: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/20 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/20.a: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/21 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/21.a: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/22 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/22.a: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/23 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/23.a: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/24 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/24.a: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/25 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/25.a: -------------------------------------------------------------------------------- 1 | 50 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/26 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/26.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/27: -------------------------------------------------------------------------------- 1 | 1 1 2 | 374893 3 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/27.a: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/28 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/28.a: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/29 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/29.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/30 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/30.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/31 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/31.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/32 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/32.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/33 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/33.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/34 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/34.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/35 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/35.a: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/36 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/3_stock_charts/tests/36.a: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/1 Flow in Networks/Programming-Assignment-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/1 Flow in Networks/Programming-Assignment-1.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/1_2_LP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/1_2_LP.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/3_Convexity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/3_Convexity.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/4_1_Duality.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/4_1_Duality.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/5_Formulations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/5_Formulations.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/6_simplex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/6_simplex.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/7_ellipsoid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/0_lectures/7_ellipsoid.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/diet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/diet.py -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/01 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/01.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/01.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/02 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/02.a: -------------------------------------------------------------------------------- 1 | No solution 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/03: -------------------------------------------------------------------------------- 1 | 1 3 2 | 0 0 1 3 | 3 4 | 1 1 1 5 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/03.a: -------------------------------------------------------------------------------- 1 | Infinity 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/04: -------------------------------------------------------------------------------- 1 | 1 1 2 | 26 3 | 4362 4 | 27 5 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/04.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/04.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/05: -------------------------------------------------------------------------------- 1 | 1 1 2 | 26 3 | 8613 4 | 27 5 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/05.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/05.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/06: -------------------------------------------------------------------------------- 1 | 1 1 2 | 30 3 | 1680 4 | -87 5 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/06.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/06.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/36: -------------------------------------------------------------------------------- 1 | 3 1 2 | 69 3 | -29 4 | -44 5 | 6073 -2551 -3871 6 | -10 7 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/36.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/36.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/43 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/2_diet/tests/43.a: -------------------------------------------------------------------------------- 1 | No solution 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/11 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/11.a: -------------------------------------------------------------------------------- 1 | Infinity 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/12 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/12.a: -------------------------------------------------------------------------------- 1 | Infinity 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/52 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/52.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/52.a -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/55 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/55.a: -------------------------------------------------------------------------------- 1 | Infinity 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/65 -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/3_ad_allocation/tests/65.a: -------------------------------------------------------------------------------- 1 | Infinity 2 | -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/2 Linear Programming/Programming-Assignment-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/2 Linear Programming/Programming-Assignment-2.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/3 NP-complete Problems/1_gsm_network/gsm_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/3 NP-complete Problems/1_gsm_network/gsm_network.py -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/3 NP-complete Problems/Programming-Assignment-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/3 NP-complete Problems/Programming-Assignment-3.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/3 NP-complete Problems/sudokusolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/3 NP-complete Problems/sudokusolver.py -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/5 Streaming Algorithms/0_lectures/4_countsketch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/5 Streaming Algorithms/0_lectures/4_countsketch.pdf -------------------------------------------------------------------------------- /5 Advanced Algorithms and Complexity/5 Streaming Algorithms/ProgrammingAssignment5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/5 Advanced Algorithms and Complexity/5 Streaming Algorithms/ProgrammingAssignment5.pdf -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 1/1_small_genome_assembler_error_free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 1/1_small_genome_assembler_error_free.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 1/2_small_genome_assembler_error_prone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 1/2_small_genome_assembler_error_prone.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 1/ProgrammingAssignment1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 1/ProgrammingAssignment1.pdf -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 2/1_puzzle_assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 2/1_puzzle_assembly.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 2/2_eulerian_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 2/2_eulerian_cycle.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 2/3_k_universal_circular_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 2/3_k_universal_circular_string.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 2/4_small_genome_assembler_kmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 2/4_small_genome_assembler_kmer.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 2/ProgrammingAssignment2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 2/ProgrammingAssignment2.pdf -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 2/phix174_10mers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 2/phix174_10mers.txt -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 2/phix174_genome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 2/phix174_genome.txt -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 3/1_network_circulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 3/1_network_circulation.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 3/2_optimal_kmer_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 3/2_optimal_kmer_size.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 3/3_bubble_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 3/3_bubble_detection.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 3/4_tip_removal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 3/4_tip_removal.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 3/5_genome_error_prone_assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 3/5_genome_error_prone_assembler.py -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 3/ProgrammingAssignment3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 3/ProgrammingAssignment3.pdf -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 3/phix174_genome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 3/phix174_genome.txt -------------------------------------------------------------------------------- /6 Genome Assembly/Homeworks/Week 3/phix174_genome_reads_with_errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Homeworks/Week 3/phix174_genome_reads_with_errors.txt -------------------------------------------------------------------------------- /6 Genome Assembly/Lectures/Assembler Challenge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Lectures/Assembler Challenge.pdf -------------------------------------------------------------------------------- /6 Genome Assembly/Lectures/Problem Formulations Algorithms.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/6 Genome Assembly/Lectures/Problem Formulations Algorithms.docx -------------------------------------------------------------------------------- /Certificates/1 Algorithmic Toolbox Coursera C9SUNQY4BZC5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/Certificates/1 Algorithmic Toolbox Coursera C9SUNQY4BZC5.pdf -------------------------------------------------------------------------------- /Certificates/2 Data Structures Coursera SABXPUK9ZB5R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/Certificates/2 Data Structures Coursera SABXPUK9ZB5R.pdf -------------------------------------------------------------------------------- /Certificates/3 Algorithms on Graphs Coursera N3M6PETVBP87.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/Certificates/3 Algorithms on Graphs Coursera N3M6PETVBP87.pdf -------------------------------------------------------------------------------- /Certificates/4 Algorithms on Strings Coursera JBKQX4NVXPH9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/Certificates/4 Algorithms on Strings Coursera JBKQX4NVXPH9.pdf -------------------------------------------------------------------------------- /Certificates/5 Advanced Algorithms and Complexity Coursera 7KXH4BYCCZ23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/Certificates/5 Advanced Algorithms and Complexity Coursera 7KXH4BYCCZ23.pdf -------------------------------------------------------------------------------- /Certificates/6 Genome Assembly Coursera RTYPYQL52RUR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/Certificates/6 Genome Assembly Coursera RTYPYQL52RUR.pdf -------------------------------------------------------------------------------- /Certificates/Data Structures and Algorithms Coursera RL34WMTAFTQJ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/Certificates/Data Structures and Algorithms Coursera RL34WMTAFTQJ.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxis42/Data-Structures-and-Algorithms-Coursera-UCSD-HSE/HEAD/README.md --------------------------------------------------------------------------------