This file contains 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
id | name | |
---|---|---|
1976 | пл. Героїв Небесної Сотні (Руднєва) | |
1999 | вул. Ново-Садова (Фрунз.) (Садова) | |
1088 | вул. 2-14) | |
1 | пос. 71-ВЗ - Оздоровчий комбінат | |
2939 | вул. 7й гвардейской армии | |
399 | вул. Євгенівська (Воровського) | |
1073 | вул. Євгена Котляра (Конарєва (Червоноармійська) | |
1974 | в-д Євгена Плужника (Руднєва) | |
1975 | пров. Євгена Плужника (Руднєва) |
This file contains 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
/** | |
* Возвращает TRUE для чисел вида 122, 202, 221, то есть для таких, у которых есть неуникальные цифры. | |
* @param a | |
*/ | |
function hasDoubleElement(a) { | |
const aStr = a.toString(10); | |
//число уникальных символов меньше длины строки | |
return Array.from(new Set(aStr.split(''))).length < aStr.length; | |
} |
This file contains 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
module Pyramid(angle) { | |
num = 3; | |
for (a = [0:num-1]) { | |
rotate([0,0,a*360/num]) rotate([0,angle,0]) children(0); | |
} | |
} | |