Hypertext Transfer Protocol Status Codes

August 4, 2019 Joe

HTTP Status Code can be described as a standardised status codes issued by the server in response to a client’s request. Below is a list of commonly used HTTP status codes;

Read More..

Counting Duplicate Words and Characters in Java

January 8, 2017 Joe

Given the sentence “Simple problem but tricky problem”, count duplicate words and Characters. Let’s look at some of the ways we could solve this using Java.

Read More..

Comparing Java Arrays using equals and deepEquals

March 9, 2019 Joe

Arrays can be compared using the java.util.Arrays.equals(….) and java.util.Arrays .deepEquals(a1,a2) method. Let's see how these methods differs from another with an example.

Read More..