If we need to classify a character as a vowel or consonant in English, then there are a few ways we can achieve this. We look at three possible solutions in Java and compare their performance and ease of use.
Filed under Java String
If we need to classify a character as a vowel or consonant in English, then there are a few ways we can achieve this. We look at three possible solutions in Java and compare their performance and ease of use.
Filed under Programming
Learn how to remove files that are not staged for commit to clean up our working directory.
Filed under Programming
The git stash can be used to store changes temporarily. If we drop these changes, we can still get them back again. We look at how to re-apply a stashed change, and how to find it.