Created
February 18, 2021 18:08
Revisions
-
wokalski revised this gist
Feb 18, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # My approach to complex programming tasks (iteration 1) 1. Define the `input` 2. Define the `output` -
wokalski created this gist
Feb 18, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ # How I work on complex programming tasks 1. Define the `input` 2. Define the `output` 3. Define the steps leading from the input to output in either direction 4. Spot the weak links/hard parts 5. Understand if the weak links can be avoided - if yes go to 3 6. Start implementing the algorithm from the end (starting from the step which generates the output and threading back)