Seems to work

This commit is contained in:
Arti Zirk 2016-08-29 11:16:29 +03:00
parent 9b58a62f9e
commit b30be927ba
1 changed files with 25 additions and 8 deletions

View File

@ -1,14 +1,31 @@
public class Balls {
enum Color {green, red};
enum Color {green, red};
public static void main (String[] param) {
// for debugging
}
public static void main (String[] param) {
// for debugging
}
public static void reorder (Color[] balls) {
// TODO!!! Your program here
}
public static void reorder (Color[] balls) {
int redBallCount = 0;
for (int i = 0; i < balls.length; i++) {
if (balls[i] == Color.red) {
redBallCount++;
}
}
if (redBallCount == balls.length) {
return;
}
for (int i = 0; i < redBallCount; i++) {
balls[i] = Color.red;
}
for (int i = redBallCount; i < balls.length; i++) {
balls[i] = Color.green;
}
}
}