- Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSameFaceDice.java
More file actions
Latest commit
48 lines (42 loc) · 1.23 KB
/
Copy pathSameFaceDice.java
File metadata and controls
48 lines (42 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
packageexercise;
importorg.junit.Test;
importstaticorg.hamcrest.CoreMatchers.is;
importstaticorg.junit.Assert.assertThat;
publicclassSameFaceDice {
/*
TASK
각각의 주사위들이 모두 같은 면을 보이기 위한 최소 rotate 횟수를 구한다.
*/
@Test
publicvoidtest() {
int[] arr1 = {1,2,3};
assertThat(solution(arr1), is(2));
int[] arr2 = {1,1,6};
assertThat(solution(arr2), is(2));
int[] arr3 = {1,6,2,3};
assertThat(solution(arr3), is(3));
int[] arr4 = {1,1};
assertThat(solution(arr4), is(0));
int[] arr5 = {3,3,4,4,2};
assertThat(solution(arr5), is(4));
}
publicintsolution(int[] A) {
intresult = Integer.MAX_VALUE;
for (intdice = 1; dice <= 6; dice++) {
intcount = 0;
for (inti = 0; i < A.length; i++) {
if (A[i] != dice) {
if (A[i] + dice == 7) {
count += 2;
} else {
count += 1;
}
}
}
if (result >= count) {
result = count;
}
}
returnresult;
}
}