
Phone: +375292081550
E-mail: zayko.t@inbox.ru
Telegram: @TatBorisevich
GitHub: tanya-bor
I’m 31 years old. I currently work as a chief accountant. I’m looking to change careers, so I’m undergoing training. I really need in activities where I can develop during my life. That is why I`m here. My goal is to gain knowledge in the field of front-end development.
``` function squaresNeeded(grains) { if (grains == 0) return 0;
let count = 1;
for (let i = 1; i <= 64; i++) { if (count < grains) { count *= 2; } else if (count == grains) { return i } else { return i - 1 } } } ```