|
86 | 86 |
|
87 | 87 | ## Computer Vision |
88 | 88 | * [Harriscorner](https://github.com/TheAlgorithms/Python/blob/master/computer_vision/harriscorner.py) |
| 89 | + * [Meanthreshold](https://github.com/TheAlgorithms/Python/blob/master/computer_vision/meanthreshold.py) |
89 | 90 |
|
90 | 91 | ## Conversions |
91 | 92 | * [Binary To Decimal](https://github.com/TheAlgorithms/Python/blob/master/conversions/binary_to_decimal.py) |
|
139 | 140 | * [Circular Linked List](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/circular_linked_list.py) |
140 | 141 | * [Deque Doubly](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/deque_doubly.py) |
141 | 142 | * [Doubly Linked List](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/doubly_linked_list.py) |
| 143 | + * [Doubly Linked List Two](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/doubly_linked_list_two.py) |
142 | 144 | * [From Sequence](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/from_sequence.py) |
143 | 145 | * [Has Loop](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/has_loop.py) |
144 | 146 | * [Is Palindrome](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/is_palindrome.py) |
|
157 | 159 | * Stacks |
158 | 160 | * [Balanced Parentheses](https://github.com/TheAlgorithms/Python/blob/master/data_structures/stacks/balanced_parentheses.py) |
159 | 161 | * [Dijkstras Two Stack Algorithm](https://github.com/TheAlgorithms/Python/blob/master/data_structures/stacks/dijkstras_two_stack_algorithm.py) |
| 162 | + * [Evaluate Postfix Notations](https://github.com/TheAlgorithms/Python/blob/master/data_structures/stacks/evaluate_postfix_notations.py) |
160 | 163 | * [Infix To Postfix Conversion](https://github.com/TheAlgorithms/Python/blob/master/data_structures/stacks/infix_to_postfix_conversion.py) |
161 | 164 | * [Infix To Prefix Conversion](https://github.com/TheAlgorithms/Python/blob/master/data_structures/stacks/infix_to_prefix_conversion.py) |
162 | 165 | * [Linked Stack](https://github.com/TheAlgorithms/Python/blob/master/data_structures/stacks/linked_stack.py) |
|
655 | 658 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_055/sol1.py) |
656 | 659 | * Problem 056 |
657 | 660 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_056/sol1.py) |
| 661 | + * Problem 057 |
| 662 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_057/sol1.py) |
658 | 663 | * Problem 062 |
659 | 664 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_062/sol1.py) |
660 | 665 | * Problem 063 |
|
667 | 672 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_071/sol1.py) |
668 | 673 | * Problem 072 |
669 | 674 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_072/sol1.py) |
| 675 | + * [Sol2](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_072/sol2.py) |
670 | 676 | * Problem 074 |
671 | 677 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_074/sol1.py) |
| 678 | + * Problem 075 |
| 679 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_075/sol1.py) |
672 | 680 | * Problem 076 |
673 | 681 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_076/sol1.py) |
674 | 682 | * Problem 080 |
675 | 683 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_080/sol1.py) |
| 684 | + * Problem 091 |
| 685 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_091/sol1.py) |
676 | 686 | * Problem 097 |
677 | 687 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_097/sol1.py) |
678 | 688 | * Problem 099 |
|
689 | 699 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_125/sol1.py) |
690 | 700 | * Problem 173 |
691 | 701 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_173/sol1.py) |
| 702 | + * Problem 174 |
| 703 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_174/sol1.py) |
692 | 704 | * Problem 191 |
693 | 705 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_191/sol1.py) |
694 | 706 | * Problem 234 |
|
698 | 710 | * [Validate Solutions](https://github.com/TheAlgorithms/Python/blob/master/project_euler/validate_solutions.py) |
699 | 711 |
|
700 | 712 | ## Quantum |
| 713 | + * [Half Adder](https://github.com/TheAlgorithms/Python/blob/master/quantum/half_adder.py) |
701 | 714 | * [Not Gate](https://github.com/TheAlgorithms/Python/blob/master/quantum/not_gate.py) |
702 | 715 | * [Quantum Entanglement](https://github.com/TheAlgorithms/Python/blob/master/quantum/quantum_entanglement.py) |
703 | 716 | * [Single Qubit Measure](https://github.com/TheAlgorithms/Python/blob/master/quantum/single_qubit_measure.py) |
|
0 commit comments