Skip to content

Instantly share code, notes, and snippets.

View mrjazz's full-sized avatar
🎯
Code as a product

Denis mrjazz

🎯
Code as a product
View GitHub Profile

Privacy Policy for Англо-русский словарь

Effective Date: 01-01.2024

Англо-русский словарь is committed to protecting your privacy. This Privacy Policy outlines our practices regarding the collection, use, and disclosure of information that may be collected through our app.

Information We Collect

We do not collect, use, or share any personal information from users of [Your App Name]. Our app does not request any permissions that would allow us to access personal data or sensitive information.

Privacy Policy for Polish-Russian Dictionary

Effective Date: 01-01.2024

Polish-Russian Dictionary is committed to protecting your privacy. This Privacy Policy outlines our practices regarding the collection, use, and disclosure of information that may be collected through our app.

Information We Collect

We do not collect, use, or share any personal information from users of [Your App Name]. Our app does not request any permissions that would allow us to access personal data or sensitive information.

<?php
require('testrail.php');
// error_reporting(0);
function traverse($xml, $fn, $level = 0) {
$result = $fn($xml, $level);
if ($result !== false) {
return $result;
const s = input();
const allCharactersAreUnique = (s) => {
return (new Set(s.split(''))).size === s.length;
}
for (let i = 4; i < s.length; i++) {
if (allCharactersAreUnique(s.substring(i-4, i))) {
console.log(i);
break;
const [initState, moves] = input().split("\n\n")
const inputLines = initState.split("\n")
const columns = [];
for (let i = inputLines.length - 2; i >= 0; i--) {
const line = inputLines[i];
for (let j = 1, idx = 0; j < line.length; j+=4, idx++) {
columns.length <= idx && columns.push([]);
line[j].trim() != '' && columns[idx].push(line[j]);
}
const input = `7-24,8-8
2-75,37-51
47-78,20-39
53-91,34-53
13-50,14-50
93-93,20-93
74-80,48-81
30-87,27-38
6-93,7-94
56-98,12-49
const input = `gfWpjRRQffQGCHHJsGqjsj
SclzJZZvmmnPbJtVSqqNBqVCBdSCsd
tlbvZJDZtmtPcJmlPnhMFQWWpMRFTfLDRRTWRp
HjMPgSWjVrjgbHRRSSMRgjRdpdbGdlcdCvQfcCdlwQJfdf
LNDnhtNtLNFFZDtFnhzvdldDflvvDCdlJfldpJ
ZFLFZZmFtFtTNTSPRrVPWWMpRP
qLBSBLRwmgzqCbzCffDlrfCV
TFFFHNWFMFFMpHpGHMTHGNhrldWZCsdZsslZlZfrflDVss
PTMcPGntTThHhTGctnMvSwjjvmmqLBmnjqqgCR
nClJtMwwntqVVPJcgZqq
const input = `A Y
B Y
B Z
B Z
B X
B Z
C Y
A Z
C X
C X
const s = `18814
1927
12782
8734
10904
9548
1493
4576
const process = require("process")
function draw(arr) {
process.stdout.write('\u001b[0;0H')
for (let row of arr) {
for (let i of row) {
process.stdout.write(i == 1 ? "\u2588" : ' ')
}
process.stdout.write("\n")
}