Grzegorz Kućmierz

Grzegorz Kućmierz @gkucmierz

About: "Tell Me and I Forget; Teach Me and I May Remember; Involve Me and I Learn"

Location:
Poland
Joined:
Sep 15, 2019

Grzegorz Kućmierz
articles - 12 total

Random normal distribution

JavaScript by default don't have randomness with normal distribution. We can use for that pretty...

Learn More 0 0Jul 27 '23

Achilles numbers generation

Today I solved "Slay Achilles!" codewars task. Achilles numbers can be found on on-line encyclopedia...

Learn More 0 0Jul 26 '23

Binary search

Binary search is commonly used technique in computer science. Using this technique you can find...

Learn More 0 3Apr 26 '23

Heap implementation

Heap is a very useful data structure for solving many programming problems. One of the problem I...

Learn More 0 0Apr 24 '23

What can be max const name in JavaScript?

This post is about maximum length of variable name in JavaScript. The answer is: 2 ** 29 - 63 Pr...

Learn More 6 2Oct 14 '20

Play sound in JavaScript

Very simple function that plays sine wave in browser environment. const play = (frequency = 300, du...

Learn More 6 0Oct 12 '20

Maximum Product of Three Numbers

Platforms to practice Leetcode problem Implementation const maxProduct =...

Learn More 2 0Oct 5 '20

Natural Search Algorithm

This post is about function I wrote while solving LeetCode task. Complexity of naive solution for th...

Learn More 6 0Sep 29 '20

Simplifying Linked-List interview tasks

While I was solving one of leetcode task I came upon idea that there is many similar tasks in many...

Learn More 3 0Sep 28 '20

How to generate permutations in JavaScript?

Generating permutations is pretty common problem in many algorithmic problems. I have already implem...

Learn More 6 0Sep 22 '20

What is the JavaScript version of sleep()?

There is no sleep function in JavaScript, but with async/await syntax it is very easy to implement....

Learn More 6 0Sep 17 '20

How to make my git contributions verified?

Motivation Github's verified commits may be useful especially, when you are making open so...

Learn More 40 3Jul 29 '20