Code Optimization : Effect of String concatenation on performance
Motivation We always wanted to write the most efficient piece of code that will do the job. Same code with string concatenation took : 10ms Without String concatenation code took : 3ms With String concetenation : took 10ms import java.util.*; pub...

