TheAlgorithms/Java

[FEATURE REQUEST] <Check Consonants>

mpousmali opened this issue · 1 comments

What would you like to Propose?

Hello,
I would like to implement the check consonants algorithm!

Issue details

Description:

Check consonants algorithm is an algorithm which will check if a given string contains consonants.

Additional Information

Returns true if the string contains consonants, false otherwise.
For example:
Given the "aaa" string the algorithm will return false.
Given the "str" string the algorithm will return true.

It's not the kind of algorithm that we include here