Some fixes and utils

This commit is contained in:
Aleksey 2020-11-22 00:42:12 +03:00
parent 3b31532fea
commit 70d5a6d209
5 changed files with 216 additions and 6 deletions

View file

@ -133,4 +133,8 @@ public class MHelper {
array[i2] = element;
}
}
public static int pow2(int i) {
return i * i;
}
}