corehello - Overview
Navigation Menu
Pinned Loading
-
common-lisp gists
Common Lisp
-
4
You can define the size of Queens -
Terraform syntax learning summary
HCL 1
-
2
# any number can be writen as n = a*10 +b, where a >=0, b is 0~93
# for example 123 = 12 * 10 + 34
# so then any number N = (a*10 + b)^2 + remainer = a^2*100 + b*(b+20*a) + remainer5
# then b*(b+20*a) <= N - a^2*100