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 characters
| Single process version: | |
| LRUCache (Dictionary wrapper): | |
| - Action filters: | |
| - On Get: | |
| - Mark entry access | |
| - On Put (AddOrUpdate): | |
| - Remove the least recently used | |
| - Least recently used: |
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 characters
| Distinct requirements: | |
| - Find all possible combinations of characters | |
| - Match each combination entry with desired set | |
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 characters
| 1) Start in the leftmost column | |
| 2) If all queens are placed | |
| return true | |
| 3) Try all rows in the current column. Do following | |
| for every tried row. | |
| a) If the queen can be placed safely in this row | |
| then mark this as part of the | |
| solution and recursively check if placing | |
| queen here leads to a solution. | |
| b) If placing queen in leads to a |
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 characters
| - Describe the purpose | |
| - Reduce the delta between reality and vision | |
| - Recalculate |
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 characters
| - Define: | |
| - Purpose. | |
| - Requirements. | |
| - Set of abilities. | |
| - Prioritized ways. (Preferably consider at least two alternatives to increase chances of making the optimal choice) | |
| - Estimated time to change. | |
| - Case of existing way: | |
| - Recheck consequences calculation. | |
| - Act. | |
| - Case of error: |
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 characters
| - Who is responsible |
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 characters
| . | |
| ? |
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 characters
| Stop. | |
| Analyze: | |
| - What happened. | |
| - Why. | |
| - What will happen. | |
| - Why. | |
| - What action should be taken. | |
| - Why. | |
| - What consequences will it bring |
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 characters
| - Will to calculate. |
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 characters
| friend of you |
NewerOlder