-
Notifications
You must be signed in to change notification settings - Fork 0
/
coba.js
177 lines (155 loc) · 4.42 KB
/
coba.js
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// function angkaPrima(angka) {
// if (angka===1){
// return false
// }
// else {
// for (let i=2; i<angka; i++){
// if (angka%i===0){
// return false;
// }
// }
// return true;
// }
// }
// // TEST CASES
// console.log(angkaPrima(3)); // true
// console.log(angkaPrima(7)); // true
// console.log(angkaPrima(6)); // false
// console.log(angkaPrima(23)); // true
// console.log(angkaPrima(33)); // false
// function fpb(angka1, angka2) {
// var faktor1 = [];
// for (let i=1; i<angka1; i++){
// if (angka1%i==0 && angka2%i === 0){
// faktor1.push(i);
// }
// }
// return faktor1[faktor1.length-1];
// }
// // TEST CASES
// console.log(fpb(12, 16)); // 4
// console.log(fpb(50, 40)); // 10
// console.log(fpb(22, 99)); // 11
// console.log(fpb(24, 36)); // 12
// console.log(fpb(17, 23)); // 1
// function cariMedian(arr) {
// let tengah1 = arr[(arr.length/2)-1]
// let tengah2 = arr[(arr.length/2)]
// let med = 0
// if (arr.length%2 !== 0){
// med = arr[(arr.length-1)/2]
// return med;
// } else {
// med = (tengah1+tengah2)/2
// return med;
// }
// }
// // TEST CASES
// console.log(cariMedian([1, 2, 3, 4, 5])); // 3
// console.log(cariMedian([1, 3, 4, 10, 12, 13])); // 7
// console.log(cariMedian([3, 4, 7, 6, 10])); // 7
// console.log(cariMedian([1, 3, 3])); // 3
// console.log(cariMedian([7, 7, 8, 8])); // 7.5
// function cariModus(arr) {
// let mod = []
// let indexMod = 0;
// let frekuensiTerbanyak = 0;
// for (let i=0; i<=arr.length-1; i++){
// let frekuensi = 0;
// for (let j=0; j<=arr.length-1; j++){
// if (arr[i]===arr[j] && i!==j){
// frekuensi++
// mod.push(arr[i])
// if (frekuensi>frekuensiTerbanyak){
// frekuensiTerbanyak = frekuensi;
// indexMod = i;
// }
// }
// }
// }
// console.log(mod);
// if (mod.length<1){
// return -1;
// }
// let cekMod = 0;
// for (let k=0; k<=arr.length-1; k++){
// cekMod+=arr[k];
// if (cekMod/arr.length==arr[k]){
// return -1
// }
// }
// return arr[indexMod]
// }
// // TEST CASES
// console.log(cariModus([10, 4, 5, 2, 4])); // 4
// console.log(cariModus([5, 10, 10, 6, 5])); // 5
// console.log(cariModus([10, 3, 1, 2, 5])); // -1
// console.log(cariModus([1, 2, 3, 3, 4, 5])); // 3
// console.log(cariModus([7, 7, 7, 7, 7])); // -1
// function digitPerkalianMinimum(angka) {
// let faktor = [];
// let minimum = 0
// let joinFaktor = []
// for (let i=0; i<=angka; i++){
// let temp = [];
// for (let j=0; j<=angka; j++){
// if (i*j===angka){
// temp.push(i,j);
// faktor.push(temp)
// }
// }
// }
// for (let k=0; k<=faktor.length-1; k++){
// joinFaktor.push(faktor[k].join(''))
// }
// for (let l=0; l<=joinFaktor.length-1; l++){
// if (l===0){
// minimum = joinFaktor[l].length;
// }
// else if (minimum>joinFaktor[l].length){
// minimum = joinFaktor[l].length
// }
// }
// return minimum;
// }
// // TEST CASES
// console.log(digitPerkalianMinimum(24)); // 2
// console.log(digitPerkalianMinimum(90)); // 3
// console.log(digitPerkalianMinimum(20)); // 2
// console.log(digitPerkalianMinimum(179)); // 4
// console.log(digitPerkalianMinimum(1)); // 2
// function tukarBesarKecil(kalimat) {
// let alay = '';
// for (let i=0; i<=kalimat.length-1; i++){
// if (kalimat[i]===kalimat[i].toLowerCase()){
// alay += kalimat[i].toUpperCase();
// }
// else {
// alay += kalimat[i].toLowerCase();
// }
// }
// return alay;
// }
// // TEST CASES
// console.log(tukarBesarKecil('Hello World')); // "hELLO wORLD"
// console.log(tukarBesarKecil('I aM aLAY')); // "i Am Alay"
// console.log(tukarBesarKecil('My Name is Bond!!')); // "mY nAME IS bOND!!"
// console.log(tukarBesarKecil('IT sHOULD bE me')); // "it Should Be ME"
// console.log(tukarBesarKecil('001-A-3-5TrdYW')); // "001-a-3-5tRDyw"
function checkAB(num) {
let joinNum = num.split(' ').join('')
for (let i=0; i<=joinNum.length-1; i++){
if (joinNum[i]==='a' || joinNum[i]=='b'){
if (joinNum[i+3]=='a' || joinNum[i+3]=='b'){
return true
}
}
}
return false
}
// TEST CASES
console.log(checkAB('lane borrowed')); // true
console.log(checkAB('i am sick')); // false
console.log(checkAB('you are boring')); // true
console.log(checkAB('barbarian')); // true
console.log(checkAB('bacon and meat')); // false