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
/* | |
There are multiple threads producing a text messages (Producers) | |
and multiple threads consuming these messages (Consumers). | |
Please define the required data structure and implement methods 'put' and 'get'. | |
You can change definition of methods if needed. | |
Please do not use BlockingQueue or any classes implementing it. | |
See usage example below. | |
*/ |
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
/* | |
Please implement string encode method as defined below: | |
The encode method should replace input string character's sequences with count and single value. | |
Examples: | |
hello -> 1h1e2l1o | |
wwwoooorrllddd -> 3w4o2r2l3d | |
mama -> 1m1a1m1a | |
To simplify solution let's assume that no input string contains more than nine consecutive characters, | |
so count is always single digit number. | |
*/ |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings] | |
"Colour0"="211,215,207" | |
"Colour1"="211,215,207" | |
"Colour2"="46,52,54" | |
"Colour3"="46,52,54" | |
"Colour4"="46,52,54" | |
"Colour5"="211,215,207" | |
"Colour6"="46,52,54" |
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
#include <MsgBoxConstants.au3> | |
#include <Date.au3> | |
; ----------------------------------------------------------------------------- | |
; C O N F I G B E G I N | |
; ----------------------------------------------------------------------------- | |
; Use following symbols to define hot-keys: | |
; ^ - Ctrl | |
; ! - Alt | |
; + - Shift |