Codekru

Strings in Golang

Strings are one of the most used data structures in almost all languages, and Golang is no exception either. Strings in the Go language are a series of bytes that usually represent text characters. The bytes in the strings can be represented in the Unicode Text using the UTF-8 encoding, because of which we can […]

Strings in Golang Read More »

ArrayList in Java

ArrayList is a resizeable array implementation of the List interface. It implements all of the list operations and provides methods to manipulate the size of an array that is used internally to store the elements. ArrayList class is equivalent to the Vector class, except that it is unsynchronized. We can think of ArrayList as a

ArrayList in Java Read More »