1 audio_filters/butterworth_filter.py
2 audio_filters/iir_filter.py
3 audio_filters/show_response.py
4 backtracking/all_combinations.py
5 backtracking/all_permutations.py
6 backtracking/all_subsequences.py
7 backtracking/coloring.py
8 backtracking/combination_sum.py
9 backtracking/crossword_puzzle_solver.py
10 backtracking/generate_parentheses.py
11 backtracking/generate_parentheses_iterative.py
12 backtracking/hamiltonian_cycle.py
13 backtracking/knight_tour.py
14 backtracking/match_word_pattern.py
15 backtracking/minimax.py
16 backtracking/n_queens.py
17 backtracking/n_queens_math.py
18 backtracking/power_sum.py
19 backtracking/rat_in_maze.py
20 backtracking/sudoku.py
21 backtracking/sum_of_subsets.py
22 backtracking/word_break.py
23 backtracking/word_ladder.py
24 backtracking/word_search.py
25 bit_manipulation/binary_and_operator.py
26 bit_manipulation/binary_coded_decimal.py
27 bit_manipulation/binary_count_setbits.py
28 bit_manipulation/binary_count_trailing_zeros.py
29 bit_manipulation/binary_or_operator.py
30 bit_manipulation/binary_shifts.py
31 bit_manipulation/binary_twos_complement.py
32 bit_manipulation/binary_xor_operator.py
33 bit_manipulation/bitwise_addition_recursive.py
34 bit_manipulation/count_1s_brian_kernighan_method.py
35 bit_manipulation/count_number_of_one_bits.py
36 bit_manipulation/excess_3_code.py
37 bit_manipulation/find_previous_power_of_two.py
38 bit_manipulation/find_unique_number.py
39 bit_manipulation/gray_code_sequence.py
40 bit_manipulation/highest_set_bit.py
41 bit_manipulation/index_of_rightmost_set_bit.py
42 bit_manipulation/is_even.py
43 bit_manipulation/is_power_of_two.py
44 bit_manipulation/largest_pow_of_two_le_num.py
45 bit_manipulation/missing_number.py
46 bit_manipulation/numbers_different_signs.py
47 bit_manipulation/power_of_4.py
48 bit_manipulation/reverse_bits.py
49 bit_manipulation/single_bit_manipulation_operations.py
50 bit_manipulation/swap_all_odd_and_even_bits.py
51 blockchain/diophantine_equation.py
52 boolean_algebra/and_gate.py
53 boolean_algebra/imply_gate.py
54 boolean_algebra/karnaugh_map_simplification.py
55 boolean_algebra/multiplexer.py
56 boolean_algebra/nand_gate.py
57 boolean_algebra/nimply_gate.py
58 boolean_algebra/nor_gate.py
59 boolean_algebra/not_gate.py
60 boolean_algebra/or_gate.py
61 boolean_algebra/quine_mc_cluskey.py
62 boolean_algebra/xnor_gate.py
63 boolean_algebra/xor_gate.py
64 cellular_automata/conways_game_of_life.py
65 cellular_automata/game_of_life.py
66 cellular_automata/langtons_ant.py
67 cellular_automata/nagel_schrekenberg.py
68 cellular_automata/one_dimensional.py
69 cellular_automata/wa_tor.py
70 ciphers/a1z26.py
71 ciphers/affine_cipher.py
72 ciphers/atbash.py
73 ciphers/autokey.py
74 ciphers/baconian_cipher.py
75 ciphers/base16.py
76 ciphers/base32.py
77 ciphers/base64_cipher.py
78 ciphers/base85.py
79 ciphers/beaufort_cipher.py
80 ciphers/bifid.py
81 ciphers/brute_force_caesar_cipher.py
82 ciphers/caesar_cipher.py
83 ciphers/cryptomath_module.py
84 ciphers/decrypt_caesar_with_chi_squared.py
85 ciphers/deterministic_miller_rabin.py
86 ciphers/diffie.py
87 ciphers/diffie_hellman.py
88 ciphers/elgamal_key_generator.py
89 ciphers/enigma_machine2.py
90 ciphers/fractionated_morse_cipher.py
91 ciphers/gronsfeld_cipher.py
92 ciphers/hill_cipher.py
93 ciphers/mixed_keyword_cypher.py
94 ciphers/mono_alphabetic_ciphers.py
95 ciphers/morse_code.py
96 ciphers/onepad_cipher.py
97 ciphers/permutation_cipher.py
98 ciphers/playfair_cipher.py
99 ciphers/polybius.py
100 ciphers/porta_cipher.py
101 ciphers/rabin_miller.py
102 ciphers/rail_fence_cipher.py
103 ciphers/rot13.py
104 ciphers/rsa_cipher.py
105 ciphers/rsa_factorization.py
106 ciphers/rsa_key_generator.py
107 ciphers/running_key_cipher.py
108 ciphers/shuffled_shift_cipher.py
109 ciphers/simple_keyword_cypher.py
110 ciphers/simple_substitution_cipher.py
111 ciphers/transposition_cipher.py
112 ciphers/transposition_cipher_encrypt_decrypt_file.py
113 ciphers/trifid_cipher.py
114 ciphers/vernam_cipher.py
115 ciphers/vigenere_cipher.py
116 ciphers/xor_cipher.py
117 computer_vision/cnn_classification.py
118 computer_vision/flip_augmentation.py
119 computer_vision/haralick_descriptors.py
120 computer_vision/harris_corner.py
121 computer_vision/horn_schunck.py
122 computer_vision/intensity_based_segmentation.py
123 computer_vision/mean_threshold.py
124 computer_vision/mosaic_augmentation.py
125 computer_vision/pooling_functions.py
126 conversions/astronomical_length_scale_conversion.py
127 conversions/binary_to_decimal.py
128 conversions/binary_to_hexadecimal.py
129 conversions/binary_to_octal.py
130 conversions/convert_number_to_words.py
131 conversions/decimal_to_any.py
132 conversions/decimal_to_binary.py
133 conversions/decimal_to_hexadecimal.py
134 conversions/decimal_to_octal.py
135 conversions/energy_conversions.py
136 conversions/excel_title_to_column.py
137 conversions/hex_to_bin.py
138 conversions/hexadecimal_to_decimal.py
139 conversions/ipv4_conversion.py
140 conversions/length_conversion.py
141 conversions/molecular_chemistry.py
142 conversions/octal_to_binary.py
143 conversions/octal_to_decimal.py
144 conversions/octal_to_hexadecimal.py
145 conversions/prefix_conversions.py
146 conversions/prefix_conversions_string.py
147 conversions/pressure_conversions.py
148 conversions/rectangular_to_polar.py
149 conversions/rgb_cmyk_conversion.py
150 conversions/rgb_hsv_conversion.py
151 conversions/roman_numerals.py
152 conversions/speed_conversions.py
153 conversions/temperature_conversions.py
154 conversions/time_conversions.py
155 conversions/volume_conversions.py
156 conversions/weight_conversion.py
157 data_compression/burrows_wheeler.py
158 data_compression/coordinate_compression.py
159 data_compression/huffman.py
160 data_compression/lempel_ziv.py
161 data_compression/lempel_ziv_decompress.py
162 data_compression/lz77.py
163 data_compression/peak_signal_to_noise_ratio.py
164 data_compression/run_length_encoding.py
165 data_structures/arrays/equilibrium_index_in_array.py
166 data_structures/arrays/find_triplets_with_0_sum.py
167 data_structures/arrays/index_2d_array_in_1d.py
168 data_structures/arrays/kth_largest_element.py
169 data_structures/arrays/median_two_array.py
170 data_structures/arrays/monotonic_array.py
171 data_structures/arrays/pairs_with_given_sum.py
172 data_structures/arrays/permutations.py
173 data_structures/arrays/prefix_sum.py
174 data_structures/arrays/product_sum.py
175 data_structures/arrays/rotate_array.py
176 data_structures/arrays/sparse_table.py
177 data_structures/arrays/sudoku_solver.py
178 data_structures/binary_tree/avl_tree.py
179 data_structures/binary_tree/basic_binary_tree.py
180 data_structures/binary_tree/binary_search_tree.py
181 data_structures/binary_tree/binary_search_tree_recursive.py
182 data_structures/binary_tree/binary_tree_mirror.py
183 data_structures/binary_tree/binary_tree_node_sum.py
184 data_structures/binary_tree/binary_tree_path_sum.py
185 data_structures/binary_tree/binary_tree_traversals.py
186 data_structures/binary_tree/diameter_of_binary_tree.py
187 data_structures/binary_tree/diff_views_of_binary_tree.py
188 data_structures/binary_tree/distribute_coins.py
189 data_structures/binary_tree/fenwick_tree.py
190 data_structures/binary_tree/flatten_binarytree_to_linkedlist.py
191 data_structures/binary_tree/floor_and_ceiling.py
192 data_structures/binary_tree/inorder_tree_traversal_2022.py
193 data_structures/binary_tree/is_sorted.py
194 data_structures/binary_tree/is_sum_tree.py
195 data_structures/binary_tree/lazy_segment_tree.py
196 data_structures/binary_tree/lowest_common_ancestor.py
197 data_structures/binary_tree/maximum_fenwick_tree.py
198 data_structures/binary_tree/maximum_sum_bst.py
199 data_structures/binary_tree/merge_two_binary_trees.py
200 data_structures/binary_tree/mirror_binary_tree.py
201 data_structures/binary_tree/non_recursive_segment_tree.py
202 data_structures/binary_tree/number_of_possible_binary_trees.py
203 data_structures/binary_tree/red_black_tree.py
204 data_structures/binary_tree/segment_tree.py
205 data_structures/binary_tree/segment_tree_other.py
206 data_structures/binary_tree/serialize_deserialize_binary_tree.py
207 data_structures/binary_tree/symmetric_tree.py
208 data_structures/binary_tree/treap.py
209 data_structures/binary_tree/wavelet_tree.py
210 data_structures/disjoint_set/alternate_disjoint_set.py
211 data_structures/disjoint_set/disjoint_set.py
212 data_structures/hashing/bloom_filter.py
213 data_structures/hashing/double_hash.py
214 data_structures/hashing/hash_map.py
215 data_structures/hashing/hash_table.py
216 data_structures/hashing/hash_table_with_linked_list.py
217 data_structures/hashing/number_theory/prime_numbers.py
218 data_structures/hashing/quadratic_probing.py
219 data_structures/hashing/tests/test_hash_map.py
220 data_structures/heap/binomial_heap.py
221 data_structures/heap/heap.py
222 data_structures/heap/heap_generic.py
223 data_structures/heap/max_heap.py
224 data_structures/heap/min_heap.py
225 data_structures/heap/randomized_heap.py
226 data_structures/heap/skew_heap.py
227 data_structures/kd_tree/build_kdtree.py
228 data_structures/kd_tree/example/example_usage.py
229 data_structures/kd_tree/example/hypercube_points.py
230 data_structures/kd_tree/kd_node.py
231 data_structures/kd_tree/nearest_neighbour_search.py
232 data_structures/kd_tree/tests/test_kdtree.py
233 data_structures/linked_list/circular_linked_list.py
234 data_structures/linked_list/deque_doubly.py
235 data_structures/linked_list/doubly_linked_list.py
236 data_structures/linked_list/doubly_linked_list_two.py
237 data_structures/linked_list/floyds_cycle_detection.py
238 data_structures/linked_list/from_sequence.py
239 data_structures/linked_list/has_loop.py
240 data_structures/linked_list/is_palindrome.py
241 data_structures/linked_list/merge_two_lists.py
242 data_structures/linked_list/middle_element_of_linked_list.py
243 data_structures/linked_list/print_reverse.py
244 data_structures/linked_list/reverse_k_group.py
245 data_structures/linked_list/rotate_to_the_right.py
246 data_structures/linked_list/singly_linked_list.py
247 data_structures/linked_list/skip_list.py
248 data_structures/linked_list/swap_nodes.py
249 data_structures/queues/circular_queue.py
250 data_structures/queues/circular_queue_linked_list.py
251 data_structures/queues/double_ended_queue.py
252 data_structures/queues/linked_queue.py
253 data_structures/queues/priority_queue_using_list.py
254 data_structures/queues/queue_by_list.py
255 data_structures/queues/queue_by_two_stacks.py
256 data_structures/queues/queue_on_pseudo_stack.py
257 data_structures/stacks/balanced_parentheses.py
258 data_structures/stacks/dijkstras_two_stack_algorithm.py
259 data_structures/stacks/infix_to_postfix_conversion.py
260 data_structures/stacks/infix_to_prefix_conversion.py
261 data_structures/stacks/largest_rectangle_histogram.py
262 data_structures/stacks/lexicographical_numbers.py
263 data_structures/stacks/next_greater_element.py
264 data_structures/stacks/postfix_evaluation.py
265 data_structures/stacks/prefix_evaluation.py
266 data_structures/stacks/stack.py
267 data_structures/stacks/stack_using_two_queues.py
268 data_structures/stacks/stack_with_doubly_linked_list.py
269 data_structures/stacks/stack_with_singly_linked_list.py
270 data_structures/stacks/stock_span_problem.py
271 data_structures/suffix_tree/example/example_usage.py
272 data_structures/suffix_tree/suffix_tree.py
273 data_structures/suffix_tree/suffix_tree_node.py
274 data_structures/suffix_tree/tests/test_suffix_tree.py
275 data_structures/trie/radix_tree.py
276 data_structures/trie/trie.py
277 digital_image_processing/change_brightness.py
278 digital_image_processing/change_contrast.py
279 digital_image_processing/convert_to_negative.py
280 digital_image_processing/dithering/burkes.py
281 digital_image_processing/edge_detection/canny.py
282 digital_image_processing/filters/bilateral_filter.py
283 digital_image_processing/filters/convolve.py
284 digital_image_processing/filters/gabor_filter.py
285 digital_image_processing/filters/gaussian_filter.py
286 digital_image_processing/filters/laplacian_filter.py
287 digital_image_processing/filters/local_binary_pattern.py
288 digital_image_processing/filters/median_filter.py
289 digital_image_processing/filters/sobel_filter.py
290 digital_image_processing/histogram_equalization/histogram_stretch.py
291 digital_image_processing/index_calculation.py
292 digital_image_processing/morphological_operations/dilation_operation.py
293 digital_image_processing/morphological_operations/erosion_operation.py
294 digital_image_processing/resize/resize.py
295 digital_image_processing/rotation/rotation.py
296 digital_image_processing/sepia.py
297 digital_image_processing/test_digital_image_processing.py
298 divide_and_conquer/closest_pair_of_points.py
299 divide_and_conquer/convex_hull.py
300 divide_and_conquer/heaps_algorithm.py
301 divide_and_conquer/heaps_algorithm_iterative.py
302 divide_and_conquer/inversions.py
303 divide_and_conquer/kth_order_statistic.py
304 divide_and_conquer/max_difference_pair.py
305 divide_and_conquer/max_subarray.py
306 divide_and_conquer/mergesort.py
307 divide_and_conquer/peak.py
308 divide_and_conquer/power.py
309 divide_and_conquer/strassen_matrix_multiplication.py
310 docs/conf.py
311 dynamic_programming/abbreviation.py
312 dynamic_programming/all_construct.py
313 dynamic_programming/bitmask.py
314 dynamic_programming/catalan_numbers.py
315 dynamic_programming/climbing_stairs.py
316 dynamic_programming/combination_sum_iv.py
317 dynamic_programming/edit_distance.py
318 dynamic_programming/factorial.py
319 dynamic_programming/fast_fibonacci.py
320 dynamic_programming/fibonacci.py
321 dynamic_programming/fizz_buzz.py
322 dynamic_programming/floyd_warshall.py
323 dynamic_programming/integer_partition.py
324 dynamic_programming/iterating_through_submasks.py
325 dynamic_programming/k_means_clustering_tensorflow.py
326 dynamic_programming/knapsack.py
327 dynamic_programming/largest_divisible_subset.py
328 dynamic_programming/longest_common_subsequence.py
329 dynamic_programming/longest_common_substring.py
330 dynamic_programming/longest_increasing_subsequence.py
331 dynamic_programming/longest_increasing_subsequence_iterative.py
332 dynamic_programming/longest_increasing_subsequence_o_nlogn.py
333 dynamic_programming/longest_palindromic_subsequence.py
334 dynamic_programming/matrix_chain_multiplication.py
335 dynamic_programming/matrix_chain_order.py
336 dynamic_programming/max_non_adjacent_sum.py
337 dynamic_programming/max_product_subarray.py
338 dynamic_programming/max_subarray_sum.py
339 dynamic_programming/min_distance_up_bottom.py
340 dynamic_programming/minimum_coin_change.py
341 dynamic_programming/minimum_cost_path.py
342 dynamic_programming/minimum_partition.py
343 dynamic_programming/minimum_size_subarray_sum.py
344 dynamic_programming/minimum_squares_to_represent_a_number.py
345 dynamic_programming/minimum_steps_to_one.py
346 dynamic_programming/minimum_tickets_cost.py
347 dynamic_programming/narcissistic_number.py
348 dynamic_programming/optimal_binary_search_tree.py
349 dynamic_programming/palindrome_partitioning.py
350 dynamic_programming/range_sum_query.py
351 dynamic_programming/regex_match.py
352 dynamic_programming/rod_cutting.py
353 dynamic_programming/smith_waterman.py
354 dynamic_programming/subset_generation.py
355 dynamic_programming/sum_of_subset.py
356 dynamic_programming/trapped_water.py
357 dynamic_programming/tribonacci.py
358 dynamic_programming/viterbi.py
359 dynamic_programming/wildcard_matching.py
360 dynamic_programming/word_break.py
361 electronics/apparent_power.py
362 electronics/builtin_voltage.py
363 electronics/capacitor_equivalence.py
364 electronics/carrier_concentration.py
365 electronics/charging_capacitor.py
366 electronics/charging_inductor.py
367 electronics/circular_convolution.py
368 electronics/coulombs_law.py
369 electronics/electric_conductivity.py
370 electronics/electric_power.py
371 electronics/electrical_impedance.py
372 electronics/ic_555_timer.py
373 electronics/ind_reactance.py
374 electronics/ohms_law.py
375 electronics/real_and_reactive_power.py
376 electronics/resistor_color_code.py
377 electronics/resistor_equivalence.py
378 electronics/resonant_frequency.py
379 electronics/wheatstone_bridge.py
380 file_transfer/receive_file.py
381 file_transfer/send_file.py
382 file_transfer/tests/test_send_file.py
383 financial/equated_monthly_installments.py
384 financial/exponential_moving_average.py
385 financial/interest.py
386 financial/present_value.py
387 financial/price_plus_tax.py
388 financial/simple_moving_average.py
389 financial/straight_line_depreciation.py
390 financial/time_and_half_pay.py
391 fractals/julia_sets.py
392 fractals/koch_snowflake.py
393 fractals/mandelbrot.py
394 fractals/sierpinski_triangle.py
395 fractals/vicsek.py
396 fuzzy_logic/fuzzy_operations.py
397 genetic_algorithm/basic_string.py
398 geodesy/haversine_distance.py
399 geodesy/lamberts_ellipsoidal_distance.py
400 geometry/geometry.py
401 geometry/graham_scan.py
402 geometry/jarvis_march.py
403 geometry/tests/test_graham_scan.py
404 geometry/tests/test_jarvis_march.py
405 graphics/bezier_curve.py
406 graphics/butterfly_pattern.py
407 graphics/digital_differential_analyzer_line.py
408 graphics/vector3_for_2d_rendering.py
409 graphs/a_star.py
410 graphs/ant_colony_optimization_algorithms.py
411 graphs/articulation_points.py
412 graphs/basic_graphs.py
413 graphs/bellman_ford.py
414 graphs/bi_directional_dijkstra.py
415 graphs/bidirectional_a_star.py
416 graphs/bidirectional_breadth_first_search.py
417 graphs/bidirectional_search.py
418 graphs/boruvka.py
419 graphs/breadth_first_search.py
420 graphs/breadth_first_search_2.py
421 graphs/breadth_first_search_shortest_path.py
422 graphs/breadth_first_search_shortest_path_2.py
423 graphs/breadth_first_search_zero_one_shortest_path.py
424 graphs/check_bipatrite.py
425 graphs/check_cycle.py
426 graphs/connected_components.py
427 graphs/deep_clone_graph.py
428 graphs/depth_first_search.py
429 graphs/depth_first_search_2.py
430 graphs/dijkstra.py
431 graphs/dijkstra_2.py
432 graphs/dijkstra_algorithm.py
433 graphs/dijkstra_alternate.py
434 graphs/dijkstra_binary_grid.py
435 graphs/dinic.py
436 graphs/directed_and_undirected_weighted_graph.py
437 graphs/edmonds_karp_multiple_source_and_sink.py
438 graphs/eulerian_path_and_circuit_for_undirected_graph.py
439 graphs/even_tree.py
440 graphs/finding_bridges.py
441 graphs/frequent_pattern_graph_miner.py
442 graphs/g_topological_sort.py
443 graphs/gale_shapley_bigraph.py
444 graphs/graph_adjacency_list.py
445 graphs/graph_adjacency_matrix.py
446 graphs/graph_list.py
447 graphs/graphs_floyd_warshall.py
448 graphs/greedy_best_first.py
449 graphs/greedy_min_vertex_cover.py
450 graphs/kahns_algorithm_long.py
451 graphs/kahns_algorithm_topo.py
452 graphs/karger.py
453 graphs/lanczos_eigenvectors.py
454 graphs/markov_chain.py
455 graphs/matching_min_vertex_cover.py
456 graphs/minimum_path_sum.py
457 graphs/minimum_spanning_tree_boruvka.py
458 graphs/minimum_spanning_tree_kruskal.py
459 graphs/minimum_spanning_tree_kruskal2.py
460 graphs/minimum_spanning_tree_prims.py
461 graphs/minimum_spanning_tree_prims2.py
462 graphs/multi_heuristic_astar.py
463 graphs/page_rank.py
464 graphs/prim.py
465 graphs/random_graph_generator.py
466 graphs/scc_kosaraju.py
467 graphs/strongly_connected_components.py
468 graphs/tarjans_scc.py
469 graphs/tests/test_min_spanning_tree_kruskal.py
470 graphs/tests/test_min_spanning_tree_prim.py
471 greedy_methods/best_time_to_buy_and_sell_stock.py
472 greedy_methods/fractional_cover_problem.py
473 greedy_methods/fractional_knapsack.py
474 greedy_methods/fractional_knapsack_2.py
475 greedy_methods/gas_station.py
476 greedy_methods/minimum_coin_change.py
477 greedy_methods/minimum_waiting_time.py
478 greedy_methods/optimal_merge_pattern.py
479 greedy_methods/smallest_range.py
480 hashes/adler32.py
481 hashes/chaos_machine.py
482 hashes/djb2.py
483 hashes/elf.py
484 hashes/enigma_machine.py
485 hashes/fletcher16.py
486 hashes/hamming_code.py
487 hashes/luhn.py
488 hashes/md5.py
489 hashes/sdbm.py
490 hashes/sha1.py
491 hashes/sha256.py
492 knapsack/greedy_knapsack.py
493 knapsack/knapsack.py
494 knapsack/recursive_approach_knapsack.py
495 knapsack/tests/test_greedy_knapsack.py
496 knapsack/tests/test_knapsack.py
497 linear_algebra/gaussian_elimination.py
498 linear_algebra/jacobi_iteration_method.py
499 linear_algebra/lu_decomposition.py
500 linear_algebra/matrix_inversion.py
501 linear_algebra/src/conjugate_gradient.py
502 linear_algebra/src/gaussian_elimination_pivoting.py
503 linear_algebra/src/lib.py
504 linear_algebra/src/polynom_for_points.py
505 linear_algebra/src/power_iteration.py
506 linear_algebra/src/rank_of_matrix.py
507 linear_algebra/src/rayleigh_quotient.py
508 linear_algebra/src/schur_complement.py
509 linear_algebra/src/test_linear_algebra.py
510 linear_algebra/src/transformations_2d.py
511 linear_programming/simplex.py
512 machine_learning/apriori_algorithm.py
513 machine_learning/astar.py
514 machine_learning/automatic_differentiation.py
515 machine_learning/data_transformations.py
516 machine_learning/decision_tree.py
517 machine_learning/dimensionality_reduction.py
518 machine_learning/forecasting/run.py
519 machine_learning/frequent_pattern_growth.py
520 machine_learning/gradient_boosting_classifier.py
521 machine_learning/gradient_descent.py
522 machine_learning/k_means_clust.py
523 machine_learning/k_nearest_neighbours.py
524 machine_learning/linear_discriminant_analysis.py
525 machine_learning/linear_regression.py
526 machine_learning/local_weighted_learning/local_weighted_learning.py
527 machine_learning/logistic_regression.py
528 machine_learning/loss_functions.py
529 machine_learning/lstm/lstm_prediction.py
530 machine_learning/mfcc.py
531 machine_learning/multilayer_perceptron_classifier.py
532 machine_learning/polynomial_regression.py
533 machine_learning/principle_component_analysis.py
534 machine_learning/scoring_functions.py
535 machine_learning/self_organizing_map.py
536 machine_learning/sequential_minimum_optimization.py
537 machine_learning/similarity_search.py
538 machine_learning/support_vector_machines.py
539 machine_learning/t_stochastic_neighbour_embedding.py
540 machine_learning/word_frequency_functions.py
541 machine_learning/xgboost_classifier.py
542 machine_learning/xgboost_regressor.py
543 maths/abs.py
544 maths/addition_without_arithmetic.py
545 maths/aliquot_sum.py
546 maths/allocation_number.py
547 maths/arc_length.py
548 maths/area.py
549 maths/area_under_curve.py
550 maths/average_absolute_deviation.py
551 maths/average_mean.py
552 maths/average_median.py
553 maths/average_mode.py
554 maths/bailey_borwein_plouffe.py
555 maths/base_neg2_conversion.py
556 maths/basic_maths.py
557 maths/binary_exponentiation.py
558 maths/binary_multiplication.py
559 maths/binomial_coefficient.py
560 maths/binomial_distribution.py
561 maths/ceil.py
562 maths/chebyshev_distance.py
563 maths/check_polygon.py
564 maths/chinese_remainder_theorem.py
565 maths/chudnovsky_algorithm.py
566 maths/collatz_sequence.py
567 maths/combinations.py
568 maths/continued_fraction.py
569 maths/decimal_isolate.py
570 maths/decimal_to_fraction.py
571 maths/dodecahedron.py
572 maths/double_factorial.py
573 maths/dual_number_automatic_differentiation.py
574 maths/entropy.py
575 maths/euclidean_distance.py
576 maths/euler_method.py
577 maths/euler_modified.py
578 maths/eulers_totient.py
579 maths/extended_euclidean_algorithm.py
580 maths/factorial.py
581 maths/factors.py
582 maths/fast_inverse_sqrt.py
583 maths/fermat_little_theorem.py
584 maths/fibonacci.py
585 maths/find_max.py
586 maths/find_min.py
587 maths/floor.py
588 maths/gamma.py
589 maths/gaussian.py
590 maths/gcd_of_n_numbers.py
591 maths/geometric_mean.py
592 maths/germain_primes.py
593 maths/greatest_common_divisor.py
594 maths/hardy_ramanujanalgo.py
595 maths/integer_square_root.py
596 maths/interquartile_range.py
597 maths/is_int_palindrome.py
598 maths/is_ip_v4_address_valid.py
599 maths/is_square_free.py
600 maths/jaccard_similarity.py
601 maths/joint_probability_distribution.py
602 maths/josephus_problem.py
603 maths/juggler_sequence.py
604 maths/karatsuba.py
605 maths/kth_lexicographic_permutation.py
606 maths/largest_of_very_large_numbers.py
607 maths/least_common_multiple.py
608 maths/line_length.py
609 maths/liouville_lambda.py
610 maths/lucas_lehmer_primality_test.py
611 maths/lucas_series.py
612 maths/maclaurin_series.py
613 maths/manhattan_distance.py
614 maths/matrix_exponentiation.py
615 maths/max_sum_sliding_window.py
616 maths/minkowski_distance.py
617 maths/mobius_function.py
618 maths/modular_division.py
619 maths/modular_exponential.py
620 maths/monte_carlo.py
621 maths/monte_carlo_dice.py
622 maths/number_of_digits.py
623 maths/numerical_analysis/adams_bashforth.py
624 maths/numerical_analysis/bisection.py
625 maths/numerical_analysis/bisection_2.py
626 maths/numerical_analysis/integration_by_simpson_approx.py
627 maths/numerical_analysis/intersection.py
628 maths/numerical_analysis/nevilles_method.py
629 maths/numerical_analysis/newton_forward_interpolation.py
630 maths/numerical_analysis/newton_raphson.py
631 maths/numerical_analysis/numerical_integration.py
632 maths/numerical_analysis/proper_fractions.py
633 maths/numerical_analysis/runge_kutta.py
634 maths/numerical_analysis/runge_kutta_fehlberg_45.py
635 maths/numerical_analysis/runge_kutta_gills.py
636 maths/numerical_analysis/secant_method.py
637 maths/numerical_analysis/simpson_rule.py
638 maths/numerical_analysis/square_root.py
639 maths/numerical_analysis/weierstrass_method.py
640 maths/odd_sieve.py
641 maths/perfect_cube.py
642 maths/perfect_number.py
643 maths/perfect_square.py
644 maths/persistence.py
645 maths/pi_generator.py
646 maths/pi_monte_carlo_estimation.py
647 maths/points_are_collinear_3d.py
648 maths/pollard_rho.py
649 maths/polynomial_evaluation.py
650 maths/polynomials/single_indeterminate_operations.py
651 maths/power_using_recursion.py
652 maths/prime_check.py
653 maths/prime_factors.py
654 maths/prime_numbers.py
655 maths/prime_sieve_eratosthenes.py
656 maths/primelib.py
657 maths/print_multiplication_table.py
658 maths/pythagoras.py
659 maths/qr_decomposition.py
660 maths/quadratic_equations_complex_numbers.py
661 maths/radians.py
662 maths/radix2_fft.py
663 maths/remove_digit.py
664 maths/segmented_sieve.py
665 maths/series/arithmetic.py
666 maths/series/geometric.py
667 maths/series/geometric_series.py
668 maths/series/harmonic.py
669 maths/series/harmonic_series.py
670 maths/series/hexagonal_numbers.py
671 maths/series/p_series.py
672 maths/sieve_of_eratosthenes.py
673 maths/sigmoid.py
674 maths/signum.py
675 maths/simultaneous_linear_equation_solver.py
676 maths/sin.py
677 maths/sock_merchant.py
678 maths/softmax.py
679 maths/solovay_strassen_primality_test.py
680 maths/spearman_rank_correlation_coefficient.py
681 maths/special_numbers/armstrong_numbers.py
682 maths/special_numbers/automorphic_number.py
683 maths/special_numbers/bell_numbers.py
684 maths/special_numbers/carmichael_number.py
685 maths/special_numbers/catalan_number.py
686 maths/special_numbers/hamming_numbers.py
687 maths/special_numbers/happy_number.py
688 maths/special_numbers/harshad_numbers.py
689 maths/special_numbers/hexagonal_number.py
690 maths/special_numbers/krishnamurthy_number.py
691 maths/special_numbers/perfect_number.py
692 maths/special_numbers/polygonal_numbers.py
693 maths/special_numbers/pronic_number.py
694 maths/special_numbers/proth_number.py
695 maths/special_numbers/triangular_numbers.py
696 maths/special_numbers/ugly_numbers.py
697 maths/special_numbers/weird_number.py
698 maths/sum_of_arithmetic_series.py
699 maths/sum_of_digits.py
700 maths/sum_of_geometric_progression.py
701 maths/sum_of_harmonic_series.py
702 maths/sumset.py
703 maths/sylvester_sequence.py
704 maths/tanh.py
705 maths/test_factorial.py
706 maths/test_prime_check.py
707 maths/three_sum.py
708 maths/trapezoidal_rule.py
709 maths/triplet_sum.py
710 maths/twin_prime.py
711 maths/two_pointer.py
712 maths/two_sum.py
713 maths/volume.py
714 maths/zellers_congruence.py
715 matrix/binary_search_matrix.py
716 matrix/count_islands_in_matrix.py
717 matrix/count_negative_numbers_in_sorted_matrix.py
718 matrix/count_paths.py
719 matrix/cramers_rule_2x2.py
720 matrix/inverse_of_matrix.py
721 matrix/largest_square_area_in_matrix.py
722 matrix/matrix_based_game.py
723 matrix/matrix_class.py
724 matrix/matrix_equalization.py
725 matrix/matrix_multiplication_recursion.py
726 matrix/matrix_operation.py
727 matrix/max_area_of_island.py
728 matrix/median_matrix.py
729 matrix/nth_fibonacci_using_matrix_exponentiation.py
730 matrix/pascal_triangle.py
731 matrix/rotate_matrix.py
732 matrix/searching_in_sorted_matrix.py
733 matrix/sherman_morrison.py
734 matrix/spiral_print.py
735 matrix/tests/test_matrix_operation.py
736 matrix/validate_sudoku_board.py
737 networking_flow/ford_fulkerson.py
738 networking_flow/minimum_cut.py
739 neural_network/activation_functions/binary_step.py
740 neural_network/activation_functions/exponential_linear_unit.py
741 neural_network/activation_functions/gaussian_error_linear_unit.py
742 neural_network/activation_functions/leaky_rectified_linear_unit.py
743 neural_network/activation_functions/mish.py
744 neural_network/activation_functions/rectified_linear_unit.py
745 neural_network/activation_functions/scaled_exponential_linear_unit.py
746 neural_network/activation_functions/soboleva_modified_hyperbolic_tangent.py
747 neural_network/activation_functions/softplus.py
748 neural_network/activation_functions/squareplus.py
749 neural_network/activation_functions/swish.py
750 neural_network/back_propagation_neural_network.py
751 neural_network/convolution_neural_network.py
752 neural_network/input_data.py
753 neural_network/simple_neural_network.py
754 neural_network/two_hidden_layers_neural_network.py
755 other/activity_selection.py
756 other/alternative_list_arrange.py
757 other/bankers_algorithm.py
758 other/davis_putnam_logemann_loveland.py
759 other/doomsday.py
760 other/fischer_yates_shuffle.py
761 other/gauss_easter.py
762 other/graham_scan.py
763 other/greedy.py
764 other/guess_the_number_search.py
765 other/h_index.py
766 other/least_recently_used.py
767 other/lfu_cache.py
768 other/linear_congruential_generator.py
769 other/lru_cache.py
770 other/magicdiamondpattern.py
771 other/majority_vote_algorithm.py
772 other/maximum_subsequence.py
773 other/nested_brackets.py
774 other/number_container_system.py
775 other/password.py
776 other/quine.py
777 other/scoring_algorithm.py
778 other/sdes.py
779 other/sliding_window_maximum.py
780 other/tower_of_hanoi.py
781 other/word_search.py
782 physics/altitude_pressure.py
783 physics/archimedes_principle_of_buoyant_force.py
784 physics/basic_orbital_capture.py
785 physics/casimir_effect.py
786 physics/center_of_mass.py
787 physics/centripetal_force.py
788 physics/coulombs_law.py
789 physics/doppler_frequency.py
790 physics/escape_velocity.py
791 physics/grahams_law.py
792 physics/horizontal_projectile_motion.py
793 physics/hubble_parameter.py
794 physics/ideal_gas_law.py
795 physics/in_static_equilibrium.py
796 physics/kinetic_energy.py
797 physics/lens_formulae.py
798 physics/lorentz_transformation_four_vector.py
799 physics/malus_law.py
800 physics/mass_energy_equivalence.py
801 physics/mirror_formulae.py
802 physics/n_body_simulation.py
803 physics/newtons_law_of_gravitation.py
804 physics/newtons_second_law_of_motion.py
805 physics/orbital_transfer_work.py
806 physics/period_of_pendulum.py
807 physics/photoelectric_effect.py
808 physics/potential_energy.py
809 physics/rainfall_intensity.py
810 physics/reynolds_number.py
811 physics/rms_speed_of_molecule.py
812 physics/shear_stress.py
813 physics/speed_of_sound.py
814 physics/speeds_of_gas_molecules.py
815 physics/terminal_velocity.py
816 project_euler/problem_001/sol1.py
817 project_euler/problem_001/sol2.py
818 project_euler/problem_001/sol3.py
819 project_euler/problem_001/sol4.py
820 project_euler/problem_001/sol5.py
821 project_euler/problem_001/sol6.py
822 project_euler/problem_001/sol7.py
823 project_euler/problem_002/sol1.py
824 project_euler/problem_002/sol2.py
825 project_euler/problem_002/sol3.py
826 project_euler/problem_002/sol4.py
827 project_euler/problem_002/sol5.py
828 project_euler/problem_003/sol1.py
829 project_euler/problem_003/sol2.py
830 project_euler/problem_003/sol3.py
831 project_euler/problem_004/sol1.py
832 project_euler/problem_004/sol2.py
833 project_euler/problem_005/sol1.py
834 project_euler/problem_005/sol2.py
835 project_euler/problem_006/sol1.py
836 project_euler/problem_006/sol2.py
837 project_euler/problem_006/sol3.py
838 project_euler/problem_006/sol4.py
839 project_euler/problem_007/sol1.py
840 project_euler/problem_007/sol2.py
841 project_euler/problem_007/sol3.py
842 project_euler/problem_008/sol1.py
843 project_euler/problem_008/sol2.py
844 project_euler/problem_008/sol3.py
845 project_euler/problem_009/sol1.py
846 project_euler/problem_009/sol2.py
847 project_euler/problem_009/sol3.py
848 project_euler/problem_009/sol4.py
849 project_euler/problem_010/sol1.py
850 project_euler/problem_010/sol2.py
851 project_euler/problem_010/sol3.py
852 project_euler/problem_011/sol1.py
853 project_euler/problem_011/sol2.py
854 project_euler/problem_012/sol1.py
855 project_euler/problem_012/sol2.py
856 project_euler/problem_013/sol1.py
857 project_euler/problem_014/sol1.py
858 project_euler/problem_014/sol2.py
859 project_euler/problem_015/sol1.py
860 project_euler/problem_015/sol2.py
861 project_euler/problem_016/sol1.py
862 project_euler/problem_016/sol2.py
863 project_euler/problem_017/sol1.py
864 project_euler/problem_018/solution.py
865 project_euler/problem_019/sol1.py
866 project_euler/problem_020/sol1.py
867 project_euler/problem_020/sol2.py
868 project_euler/problem_020/sol3.py
869 project_euler/problem_020/sol4.py
870 project_euler/problem_021/sol1.py
871 project_euler/problem_022/sol1.py
872 project_euler/problem_022/sol2.py
873 project_euler/problem_023/sol1.py
874 project_euler/problem_024/sol1.py
875 project_euler/problem_025/sol1.py
876 project_euler/problem_025/sol2.py
877 project_euler/problem_025/sol3.py
878 project_euler/problem_026/sol1.py
879 project_euler/problem_027/sol1.py
880 project_euler/problem_028/sol1.py
881 project_euler/problem_029/sol1.py
882 project_euler/problem_030/sol1.py
883 project_euler/problem_031/sol1.py
884 project_euler/problem_031/sol2.py
885 project_euler/problem_032/sol32.py
886 project_euler/problem_033/sol1.py
887 project_euler/problem_034/sol1.py
888 project_euler/problem_035/sol1.py
889 project_euler/problem_036/sol1.py
890 project_euler/problem_037/sol1.py
891 project_euler/problem_038/sol1.py
892 project_euler/problem_039/sol1.py
893 project_euler/problem_040/sol1.py
894 project_euler/problem_041/sol1.py
895 project_euler/problem_042/solution42.py
896 project_euler/problem_043/sol1.py
897 project_euler/problem_044/sol1.py
898 project_euler/problem_045/sol1.py
899 project_euler/problem_046/sol1.py
900 project_euler/problem_047/sol1.py
901 project_euler/problem_048/sol1.py
902 project_euler/problem_049/sol1.py
903 project_euler/problem_050/sol1.py
904 project_euler/problem_051/sol1.py
905 project_euler/problem_052/sol1.py
906 project_euler/problem_053/sol1.py
907 project_euler/problem_054/sol1.py
908 project_euler/problem_054/test_poker_hand.py
909 project_euler/problem_055/sol1.py
910 project_euler/problem_056/sol1.py
911 project_euler/problem_057/sol1.py
912 project_euler/problem_058/sol1.py
913 project_euler/problem_059/sol1.py
914 project_euler/problem_062/sol1.py
915 project_euler/problem_063/sol1.py
916 project_euler/problem_064/sol1.py
917 project_euler/problem_065/sol1.py
918 project_euler/problem_067/sol1.py
919 project_euler/problem_067/sol2.py
920 project_euler/problem_068/sol1.py
921 project_euler/problem_069/sol1.py
922 project_euler/problem_070/sol1.py
923 project_euler/problem_071/sol1.py
924 project_euler/problem_072/sol1.py
925 project_euler/problem_072/sol2.py
926 project_euler/problem_073/sol1.py
927 project_euler/problem_074/sol1.py
928 project_euler/problem_074/sol2.py
929 project_euler/problem_075/sol1.py
930 project_euler/problem_076/sol1.py
931 project_euler/problem_077/sol1.py
932 project_euler/problem_078/sol1.py
933 project_euler/problem_079/sol1.py
934 project_euler/problem_080/sol1.py
935 project_euler/problem_081/sol1.py
936 project_euler/problem_082/sol1.py
937 project_euler/problem_085/sol1.py
938 project_euler/problem_086/sol1.py
939 project_euler/problem_087/sol1.py
940 project_euler/problem_089/sol1.py
941 project_euler/problem_091/sol1.py
942 project_euler/problem_092/sol1.py
943 project_euler/problem_094/sol1.py
944 project_euler/problem_095/sol1.py
945 project_euler/problem_097/sol1.py
946 project_euler/problem_099/sol1.py
947 project_euler/problem_100/sol1.py
948 project_euler/problem_101/sol1.py
949 project_euler/problem_102/sol1.py
950 project_euler/problem_104/sol1.py
951 project_euler/problem_107/sol1.py
952 project_euler/problem_109/sol1.py
953 project_euler/problem_112/sol1.py
954 project_euler/problem_113/sol1.py
955 project_euler/problem_114/sol1.py
956 project_euler/problem_115/sol1.py
957 project_euler/problem_116/sol1.py
958 project_euler/problem_117/sol1.py
959 project_euler/problem_119/sol1.py
960 project_euler/problem_120/sol1.py
961 project_euler/problem_121/sol1.py
962 project_euler/problem_122/sol1.py
963 project_euler/problem_123/sol1.py
964 project_euler/problem_125/sol1.py
965 project_euler/problem_129/sol1.py
966 project_euler/problem_131/sol1.py
967 project_euler/problem_135/sol1.py
968 project_euler/problem_136/sol1.py
969 project_euler/problem_144/sol1.py
970 project_euler/problem_145/sol1.py
971 project_euler/problem_164/sol1.py
972 project_euler/problem_173/sol1.py
973 project_euler/problem_174/sol1.py
974 project_euler/problem_180/sol1.py
975 project_euler/problem_187/sol1.py
976 project_euler/problem_188/sol1.py
977 project_euler/problem_190/sol1.py
978 project_euler/problem_191/sol1.py
979 project_euler/problem_203/sol1.py
980 project_euler/problem_205/sol1.py
981 project_euler/problem_206/sol1.py
982 project_euler/problem_207/sol1.py
983 project_euler/problem_234/sol1.py
984 project_euler/problem_301/sol1.py
985 project_euler/problem_345/sol1.py
986 project_euler/problem_493/sol1.py
987 project_euler/problem_551/sol1.py
988 project_euler/problem_587/sol1.py
989 project_euler/problem_686/sol1.py
990 project_euler/problem_800/sol1.py
991 quantum/q_fourier_transform.py
992 scheduling/first_come_first_served.py
993 scheduling/highest_response_ratio_next.py
994 scheduling/job_sequence_with_deadline.py
995 scheduling/job_sequencing_with_deadline.py
996 scheduling/multi_level_feedback_queue.py
997 scheduling/non_preemptive_shortest_job_first.py
998 scheduling/round_robin.py
999 scheduling/shortest_job_first.py
1000 scripts/build_directory_md.py
1001 scripts/validate_filenames.py
1002 scripts/validate_solutions.py
1003 searches/binary_search.py
1004 searches/binary_tree_traversal.py
1005 searches/double_linear_search.py
1006 searches/double_linear_search_recursion.py
1007 searches/exponential_search.py
1008 searches/fibonacci_search.py
1009 searches/hill_climbing.py
1010 searches/interpolation_search.py
1011 searches/jump_search.py
1012 searches/linear_search.py
1013 searches/median_of_medians.py
1014 searches/quick_select.py
1015 searches/sentinel_linear_search.py
1016 searches/simple_binary_search.py
1017 searches/simulated_annealing.py
1018 searches/tabu_search.py
1019 searches/ternary_search.py
1020 sorts/bead_sort.py
1021 sorts/binary_insertion_sort.py
1022 sorts/bitonic_sort.py
1023 sorts/bogo_sort.py
1024 sorts/bubble_sort.py
1025 sorts/bucket_sort.py
1026 sorts/circle_sort.py
1027 sorts/cocktail_shaker_sort.py
1028 sorts/comb_sort.py
1029 sorts/counting_sort.py
1030 sorts/cycle_sort.py
1031 sorts/cyclic_sort.py
1032 sorts/double_sort.py
1033 sorts/dutch_national_flag_sort.py
1034 sorts/exchange_sort.py
1035 sorts/external_sort.py
1036 sorts/gnome_sort.py
1037 sorts/heap_sort.py
1038 sorts/insertion_sort.py
1039 sorts/intro_sort.py
1040 sorts/iterative_merge_sort.py
1041 sorts/merge_insertion_sort.py
1042 sorts/merge_sort.py
1043 sorts/msd_radix_sort.py
1044 sorts/natural_sort.py
1045 sorts/odd_even_sort.py
1046 sorts/odd_even_transposition_parallel.py
1047 sorts/odd_even_transposition_single_threaded.py
1048 sorts/pancake_sort.py
1049 sorts/patience_sort.py
1050 sorts/pigeon_sort.py
1051 sorts/pigeonhole_sort.py
1052 sorts/quick_sort.py
1053 sorts/quick_sort_3_partition.py
1054 sorts/radix_sort.py
1055 sorts/recursive_insertion_sort.py
1056 sorts/recursive_mergesort_array.py
1057 sorts/recursive_quick_sort.py
1058 sorts/selection_sort.py
1059 sorts/shell_sort.py
1060 sorts/shrink_shell_sort.py
1061 sorts/slowsort.py
1062 sorts/stalin_sort.py
1063 sorts/stooge_sort.py
1064 sorts/strand_sort.py
1065 sorts/tim_sort.py
1066 sorts/topological_sort.py
1067 sorts/tree_sort.py
1068 sorts/unknown_sort.py
1069 sorts/wiggle_sort.py
1070 strings/aho_corasick.py
1071 strings/alternative_string_arrange.py
1072 strings/anagrams.py
1073 strings/autocomplete_using_trie.py
1074 strings/barcode_validator.py
1075 strings/bitap_string_match.py
1076 strings/boyer_moore_search.py
1077 strings/camel_case_to_snake_case.py
1078 strings/can_string_be_rearranged_as_palindrome.py
1079 strings/capitalize.py
1080 strings/check_anagrams.py
1081 strings/count_vowels.py
1082 strings/credit_card_validator.py
1083 strings/damerau_levenshtein_distance.py
1084 strings/detecting_english_programmatically.py
1085 strings/dna.py
1086 strings/edit_distance.py
1087 strings/frequency_finder.py
1088 strings/hamming_distance.py
1089 strings/indian_phone_validator.py
1090 strings/is_contains_unique_chars.py
1091 strings/is_isogram.py
1092 strings/is_pangram.py
1093 strings/is_polish_national_id.py
1094 strings/is_spain_national_id.py
1095 strings/is_srilankan_phone_number.py
1096 strings/is_valid_email_address.py
1097 strings/jaro_winkler.py
1098 strings/join.py
1099 strings/knuth_morris_pratt.py
1100 strings/levenshtein_distance.py
1101 strings/lower.py
1102 strings/manacher.py
1103 strings/min_cost_string_conversion.py
1104 strings/naive_string_search.py
1105 strings/ngram.py
1106 strings/palindrome.py
1107 strings/pig_latin.py
1108 strings/prefix_function.py
1109 strings/rabin_karp.py
1110 strings/remove_duplicate.py
1111 strings/reverse_letters.py
1112 strings/reverse_words.py
1113 strings/snake_case_to_camel_pascal_case.py
1114 strings/split.py
1115 strings/string_switch_case.py
1116 strings/strip.py
1117 strings/text_justification.py
1118 strings/title.py
1119 strings/top_k_frequent_words.py
1120 strings/upper.py
1121 strings/wave_string.py
1122 strings/wildcard_pattern_matching.py
1123 strings/word_occurrence.py
1124 strings/word_patterns.py
1125 strings/z_function.py
1126 web_programming/co2_emission.py
1127 web_programming/covid_stats_via_xpath.py
1128 web_programming/crawl_google_results.py
1129 web_programming/crawl_google_scholar_citation.py
1130 web_programming/currency_converter.py
1131 web_programming/current_stock_price.py
1132 web_programming/current_weather.py
1133 web_programming/daily_horoscope.py
1134 web_programming/download_images_from_google_query.py
1135 web_programming/emails_from_url.py
1136 web_programming/fetch_anime_and_play.py
1137 web_programming/fetch_bbc_news.py
1138 web_programming/fetch_github_info.py
1139 web_programming/fetch_jobs.py
1140 web_programming/fetch_quotes.py
1141 web_programming/fetch_well_rx_price.py
1142 web_programming/get_amazon_product_data.py
1143 web_programming/get_imdb_top_250_movies_csv.py
1144 web_programming/get_ip_geolocation.py
1145 web_programming/get_top_billionaires.py
1146 web_programming/get_top_hn_posts.py
1147 web_programming/giphy.py
1148 web_programming/instagram_crawler.py
1149 web_programming/instagram_pic.py
1150 web_programming/instagram_video.py
1151 web_programming/nasa_data.py
1152 web_programming/open_google_results.py
1153 web_programming/random_anime_character.py
1154 web_programming/recaptcha_verification.py
1155 web_programming/reddit.py
1156 web_programming/search_books_by_isbn.py
1157 web_programming/slack_message.py
1158 web_programming/test_fetch_github_info.py
1159 web_programming/world_covid19_stats.py
