File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 265265 * [ Postfix Evaluation] ( data_structures/stacks/postfix_evaluation.py )
266266 * [ Prefix Evaluation] ( data_structures/stacks/prefix_evaluation.py )
267267 * [ Stack] ( data_structures/stacks/stack.py )
268+ * [ Stack Using Two Queues] ( data_structures/stacks/stack_using_two_queues.py )
268269 * [ Stack With Doubly Linked List] ( data_structures/stacks/stack_with_doubly_linked_list.py )
269270 * [ Stack With Singly Linked List] ( data_structures/stacks/stack_with_singly_linked_list.py )
270271 * [ Stock Span Problem] ( data_structures/stacks/stock_span_problem.py )
361362 * [ Trapped Water] ( dynamic_programming/trapped_water.py )
362363 * [ Tribonacci] ( dynamic_programming/tribonacci.py )
363364 * [ Viterbi] ( dynamic_programming/viterbi.py )
365+ * [ Wildcard Matching] ( dynamic_programming/wildcard_matching.py )
364366 * [ Word Break] ( dynamic_programming/word_break.py )
365367
366368## Electronics
791793
792794## Physics
793795 * [ Altitude Pressure] ( physics/altitude_pressure.py )
794- * [ Archimedes Principle] ( physics/archimedes_principle .py )
796+ * [ Archimedes Principle Of Buoyant Force ] ( physics/archimedes_principle_of_buoyant_force .py )
795797 * [ Basic Orbital Capture] ( physics/basic_orbital_capture.py )
796798 * [ Casimir Effect] ( physics/casimir_effect.py )
797799 * [ Centripetal Force] ( physics/centripetal_force.py )
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def added_solution_file_path() -> list[pathlib.Path]:
5555 solution_file_paths = []
5656 headers = {
5757 "Accept" : "application/vnd.github.v3+json" ,
58- "Authorization" : f "token { os .getenv ( ' GITHUB_TOKEN' , '' ) } " ,
58+ "Authorization" : "token " + os .environ [ " GITHUB_TOKEN" ] ,
5959 }
6060 files = requests .get (get_files_url (), headers = headers ).json ()
6161 for file in files :
You can’t perform that action at this time.
0 commit comments