Java

345 articles about java development, tools, and best practices

int32 to IPv4 in Java

The challenge

Take the following IPv4 address: 128.32.10.1

This address has 4 octets where each octet is a single byte (or 8 bits).

  • 1st octet 128 has …

Read Article →

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 →