File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 265
265
* [ Postfix Evaluation] ( data_structures/stacks/postfix_evaluation.py )
266
266
* [ Prefix Evaluation] ( data_structures/stacks/prefix_evaluation.py )
267
267
* [ Stack] ( data_structures/stacks/stack.py )
268
+ * [ Stack Using Two Queues] ( data_structures/stacks/stack_using_two_queues.py )
268
269
* [ Stack With Doubly Linked List] ( data_structures/stacks/stack_with_doubly_linked_list.py )
269
270
* [ Stack With Singly Linked List] ( data_structures/stacks/stack_with_singly_linked_list.py )
270
271
* [ Stock Span Problem] ( data_structures/stacks/stock_span_problem.py )
361
362
* [ Trapped Water] ( dynamic_programming/trapped_water.py )
362
363
* [ Tribonacci] ( dynamic_programming/tribonacci.py )
363
364
* [ Viterbi] ( dynamic_programming/viterbi.py )
365
+ * [ Wildcard Matching] ( dynamic_programming/wildcard_matching.py )
364
366
* [ Word Break] ( dynamic_programming/word_break.py )
365
367
366
368
## Electronics
791
793
792
794
## Physics
793
795
* [ 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 )
795
797
* [ Basic Orbital Capture] ( physics/basic_orbital_capture.py )
796
798
* [ Casimir Effect] ( physics/casimir_effect.py )
797
799
* [ 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]:
55
55
solution_file_paths = []
56
56
headers = {
57
57
"Accept" : "application/vnd.github.v3+json" ,
58
- "Authorization" : f "token { os .getenv ( ' GITHUB_TOKEN' , '' ) } " ,
58
+ "Authorization" : "token " + os .environ [ " GITHUB_TOKEN" ] ,
59
59
}
60
60
files = requests .get (get_files_url (), headers = headers ).json ()
61
61
for file in files :
You can’t perform that action at this time.
0 commit comments