Skip to content

Instantly share code, notes, and snippets.

@Efreitor2001
Efreitor2001 / Merge_Sort.java
Last active September 8, 2022 23:46
[Java] Сортировка слиянием
public class Program {
public static void main(String[] args) {
int[] l = {5, 2, 3, 1, 4};
int[] res = sortArray(l);
for (int i : res) {
System.out.print(i + " ");
}
}
public static int[] sortArray(int[] array) {
@Efreitor2001
Efreitor2001 / proxdetector.pwn
Created December 29, 2022 07:50 — forked from ziggi/proxdetector.pwn
SA-MP ProxDetector function
stock ProxDetector(playerid, Float:max_range, color, const string[], Float:max_ratio = 1.6)
{
new
Float:pos_x,
Float:pos_y,
Float:pos_z,
Float:range,
Float:range_ratio,
Float:range_with_ratio,
clr_r, clr_g, clr_b,