Oct 31, 20201 min readThe use of tailrec keyword in KotlinThe tailrec keyword makes tail recursion more efficient and keeps the function away from StackOverflowError exception. First we need to...
Oct 30, 20201 min readThe Beauty of Bit-wise OperationBit-wise operator is very useful for increasing performance as well as efficient code. There are usually 6 bit-wise operations in most of...
Sep 1, 20201 min readRoom: Exception HandlingDatabase exception handling can create more intuitive user experience during accessing persistence database. To avoid exception handling...