-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.ts
85 lines (77 loc) · 3.45 KB
/
custom.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
namespace music {
/**
* A function to trigger a tone in the background (parallel task).
* Функция для запуска тона в фоне (паралельной задачи).
* @param frequency pitch of the tone to play in Hertz (Hz), eg: Note.C
* @param ms tone duration in milliseconds(ms), eg: BeatFraction.Half
*/
//% blockId="PlayToneInBackground"
//% block="play tone at $frequency for $duration in the background"
//% block.loc.ru="проиграть тон $frequency продолжительностью $duration в фоне"
//% frequency.shadow="device_note"
//% duration.shadow="device_beat"
//% weight="75" blockGap="8"
//% group="Tone"
export function playToneInBackground(frequency: number, duration: number) {
control.runInParallel(function () {
music.playTone(frequency, duration);
});
}
}
namespace brick {
/**
* A function for setting the color pattern indicator in the background (parallel task).
* Функция для установки индикатору шаблона цвета в фоне (паралельной задачи).
* @param pattern the lights pattern to use. eg: StatusLight.Orange
* @param duration in milliseconds(ms), eg: 100
*/
//% blockId="SetStatusLightInBackground"
//% block="set status light to $pattern at $duration in the background"
//% block.loc.ru="установить индикатор $pattern продолжительностью $duration в фоне"
//% help="brick/set-status-light"
//% weight="98"
//% group="Indicator"
export function setStatusLightInBackground(pattern: StatusLight, duration: number) {
control.runInParallel(function () {
brick.setStatusLight(pattern);
pause(duration);
brick.setStatusLight(StatusLight.Off);
});
}
}
namespace custom {
/**
* Поиск наиболее часто встречающегося числа в массиве.
* @param arr массив с элементами
*/
//% blockId="MostFrequentNumber"
//% block="get the most common number from $arr array"
//% block.loc.ru="получить макс часто встречающийся элемент из массива $arr"
//% weight="89"
export function MostFrequentNumber(arr: number[]): number {
// Сортируем массив для более эффективного подсчета частоты
arr.sort((a, b) => a - b);
let maxCount = 0;
let currentNum = arr[0];
let mostFrequentNum = arr[0];
let currentCount = 1;
// Проходим по отсортированному массиву, подсчитывая частоту каждого числа
for (let i = 1; i < arr.length; i++) {
if (arr[i] === currentNum) {
currentCount++;
} else {
if (currentCount > maxCount) {
maxCount = currentCount;
mostFrequentNum = currentNum;
}
currentNum = arr[i];
currentCount = 1;
}
}
// Проверяем последнее число
if (currentCount > maxCount) {
mostFrequentNum = currentNum;
}
return mostFrequentNum;
}
}