-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolouredTriangles006.js
70 lines (43 loc) · 1.4 KB
/
colouredTriangles006.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
let row = "RBRG";
triangle(row);
function triangle(row){
let prevLetter = "";
let rowLength = row.length; // so we can calculate how many times we must execute the algorithm
let triangle = []
if (rowLength == 1) return row;
else {
//Calculate how many times we have to execute the algorithm
for (let i=0; i<rowLength; i++){
prevLetter = row.slice(i, i+2);
console.log(prevLetter);
}
}
//console.log(triangle);
}
//CALCULATE LAST TWO COLORS
function calculateIntermediateColor (){
let randomNumber = Math.floor((Math.random() * 100) + 1);
if (randomNumber <= 33) return "R";
else if (randomNumber > 33 && randomNumber <=66) return "B";
else return "G";
}
function calculateLastColor(prevRow){
let lastTwoDigits = prevRow.slice(-2); // The slice in this case, will select the last two digits in a string. If we put -1 will only select the last one etc https://stackoverflow.com/questions/3884632/how-to-get-the-last-character-of-a-string
if (lastTwoDigits.charAt(0) == lastTwoDigits.charAt(1)) return lastTwoDigits.charAt(0);
else {
switch (lastTwoDigits) {
case 'RG': return "B";
break;
case 'RB': return "G";
break;
case 'BR': return "G";
break;
case 'BG': return "R";
break;
case 'GR': return 'B';
break;
case 'GB': return 'R';
break;
}
}
}