Hmelmin / diffusion

"Euro diffusion" task
0 stars 0 forks source link

Use proper indentation #9

Open aaabramov opened 5 years ago

aaabramov commented 5 years ago

Example:

for(int i=0;i<countries;i++){

~>

for (int i = 0; i < countries; i++){
aaabramov commented 5 years ago

See: https://www.jetbrains.com/help/idea/using-code-editor.html

Hmelmin commented 5 years ago

Fixed