Technical Articles

In-depth guides, insights, and best practices for modern software engineering

Vowel Count in Java

The challenge

Return the number (count) of vowels in the given string. 

We will consider a, e, i, o, u as vowels for this challenge (but not y).

The …

Read Article →

Pick peaks in Java

The challenge

Write a function that returns the positions and the values of the “peaks” (or local maxima) of a numeric array.

For example, …

Read Article →