-
Notifications
You must be signed in to change notification settings - Fork 0
/
Logic1.java
299 lines (270 loc) · 11.8 KB
/
Logic1.java
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
@SuppressWarnings("unused")
public class Logic1 {
/**
* When squirrels get together for a party, they like to have cigars. A squirrel party is successful
* when the number of cigars is between 40 and 60, inclusive. Unless it is the weekend,
* in which case there is no upper bound on the number of cigars. Return true if the party
* with the given values is successful, or false otherwise.
*/
public boolean cigarParty(int cigars, boolean isWeekend) {
return (isWeekend && cigars > 39) || (cigars > 39 && cigars < 61);
}
/**
* You and your date are trying to get a table at a restaurant. The parameter "you" is the stylishness
* of your clothes, in the range 0..10, and "date" is the stylishness of your date's clothes.
* The result getting the table is encoded as an int value with 0=no, 1=maybe, 2=yes.
* If either of you is very stylish, 8 or more, then the result is 2 (yes).
* With the exception that if either of you has style of 2 or less, then the result is 0 (no).
* Otherwise the result is 1 (maybe).
*/
public int dateFashion(int you, int date) {
return (you < 3 || date < 3) ? 0 : (you > 7 || date > 7) ? 2 : 1;
}
/**
* The squirrels in Palo Alto spend most of the day playing. In particular, they play if the temperature
* is between 60 and 90 (inclusive). Unless it is summer, then the upper limit is 100 instead of 90.
* Given an int temperature and a boolean isSummer, return true if the squirrels play and false otherwise.
*/
public boolean squirrelPlay(int temp, boolean isSummer) {
return (isSummer && temp > 59 && temp < 101) || (temp > 59 && temp < 91);
}
/**
* You are driving a little too fast, and a police officer stops you. Write code to compute the result,
* encoded as an int value: 0=no ticket, 1=small ticket, 2=big ticket. If speed is 60 or less,
* the result is 0. If speed is between 61 and 80 inclusive, the result is 1. If speed is 81 or more,
* the result is 2. Unless it is your birthday -- on that day, your speed can be 5 higher in all cases.
*/
public int caughtSpeeding(int speed, boolean isBirthday) {
return (isBirthday)
? (speed < 66) ? 0
: (speed < 86) ? 1 : 2
: (speed < 61) ? 0
: (speed < 81) ? 1 : 2;
}
/**
* Given 2 ints, a and b, return their sum. However, sums in the range 10..19 inclusive,
* are forbidden, so in that case just return 20.
*/
public int sortaSum(int a, int b) {
return (a + b > 9 && a + b < 20) ? 20 : a + b;
}
/**
* Given a day of the week encoded as 0=Sun, 1=Mon, 2=Tue, ...6=Sat, and a boolean indicating
* if we are on vacation, return a string of the form "7:00" indicating when the alarm clock should ring.
* Weekdays, the alarm should be "7:00" and on the weekend it should be "10:00".
* Unless we are on vacation -- then on weekdays it should be "10:00" and weekends it should be "off".
*/
public String alarmClock(int day, boolean vacation) {
return (vacation)
? (day > 0 && day < 6) ? "10:00" : "off"
: (day > 0 && day < 6) ? "7:00" : "10:00";
}
/**
* The number 6 is a truly great number. Given two int values, a and b, return true if either one is 6.
* Or if their sum or difference is 6. Note: the function Math.abs(num) computes the absolute value of a number.
*/
public boolean love6(int a, int b) {
return a == 6 || b == 6 || a + b == 6 || Math.abs(a - b) == 6;
}
/**
* Given a number n, return true if n is in the range 1..10, inclusive.
* Unless outsideMode is true, in which case return true if the number is less or equal to 1,
* or greater or equal to 10.
*/
public boolean in1To10(int n, boolean outsideMode) {
return n == 1 || n == 10 || outsideMode == (n < 2 || n > 9);
}
/**
* We'll say a number is special if it is a multiple of 11 or if it is one more than a multiple of 11.
* Return true if the given non-negative number is special. Use the % "mod" operator -- see Introduction to Mod
*/
public boolean specialEleven(int n) {
return n % 11 < 2;
}
/**
* Return true if the given non-negative number is 1 or 2 more than a multiple of 20.
*
* @see <a href="https://codingbat.com/doc/practice/mod-introduction.html">Introduction to Mod</a>
*/
public boolean more20(int n) {
return ((n % 20 - 1) & ~1) == 0;
}
/**
* Return true if the given non-negative number is a multiple of 3 or 5, but not both.
* Use the % "mod" operator -- see <a href="https://codingbat.com/doc/practice/mod-introduction.html">Introduction to Mod</a>
*/
public boolean old35(int n) {
return n % 3 == 0 ^ n % 5 == 0;
}
/**
* Return true if the given non-negative number is 1 or 2 less than a multiple of 20.
* So for example 38 and 39 return true, but 40 returns false.
*
* @see <a href="https://codingbat.com/doc/practice/mod-introduction.html">Introduction to Mod</a>
*/
public boolean less20(int n) {
return ((n % 20 - 18) & ~1) == 0;
}
/**
* Given a non-negative number "num", return true if num is within 2 of a multiple of 10.
* Note: (a % b) is the remainder of dividing a by b, so (7 % 5) is 2.
*
* @see <a href="https://codingbat.com/doc/practice/mod-introduction.html">Introduction to Mod</a>
*/
public boolean nearTen(int num) {
return (num % 10 & 7) < 3;
}
/**
* Given 2 ints, a and b, return their sum. However, "teen" values in the range 13..19 inclusive,
* are extra lucky. So if either value is a teen, just return 19.
*/
public int teenSum(int a, int b) {
return (a > 12 && a < 20) || (b > 12 && b < 20) ? 19 : a + b;
}
/**
* Your cell phone rings. Return true if you should answer it. Normally you answer,
* except in the morning you only answer if it is your mom calling.
* In all cases, if you are asleep, you do not answer.
*/
public boolean answerCell(boolean isMorning, boolean isMom, boolean isAsleep) {
return !isAsleep && (isMom || !isMorning);
}
/**
* We are having a party with amounts of tea and candy. Return the int outcome of the party encoded as
* 0=bad, 1=good, or 2=great. A party is good (1) if both tea and candy are at least 5.
* However, if either tea or candy is at least double the amount of the other one, the party is great (2).
* However, in all cases, if either tea or candy is less than 5, the party is always bad (0).
*/
public int teaParty(int tea, int candy) {
return (tea < 5 || candy < 5) ? 0
: (tea >= 2 * candy || candy >= 2 * tea) ? 2 : 1;
}
/**
* Given a string str, if the string starts with "f" return "Fizz".
* If the string ends with "b" return "Buzz". If both the "f" and "b" conditions are true,
* return "FizzBuzz". In all other cases, return the string unchanged.
* (See also: <a href="https://codingbat.com/doc/practice/fizzbuzz-code.html">FizzBuzz Code</a>)
*/
public String fizzString(String str) {
return str.startsWith("f") ? (str.endsWith("b") ? "FizzBuzz" : "Fizz") : (str.endsWith("b") ? "Buzz" : str);
}
/**
* Given an int n, return the string form of the number followed by "!". So the int 6 yields "6!".
* Except if the number is divisible by 3 use "Fizz" instead of the number, and if the number is divisible by 5
* use "Buzz", and if divisible by both 3 and 5, use "FizzBuzz".
* Note: the % "mod" operator computes the remainder after division, so 23 % 10 yields 3.
* What will the remainder be when one number divides evenly into another?
* (See also: <a href="https://codingbat.com/doc/practice/fizzbuzz-code.html">FizzBuzz Code</a>)
*/
public String fizzString2(int n) {
return ((n % 15 == 0) ? "FizzBuzz"
: (n % 3 == 0) ? "Fizz"
: (n % 5 == 0) ? "Buzz"
: n) + "!";
}
/**
* Given three ints, a b c, return true if it is possible to add two of the ints to get the third.
*/
public boolean twoAsOne(int a, int b, int c) {
return a + b == c || a + c == b || b + c == a;
}
/**
* Given three ints, a b c, return true if b is greater than a, and c is greater than b.
* However, with the exception that if "bOk" is true, b does not need to be greater than a.
*/
public boolean inOrder(int a, int b, int c, boolean bOk) {
return c > b && (bOk || b > a);
}
/**
* Given three ints, a b c, return true if they are in strict increasing order,
* such as 2 5 11, or 5 6 7, but not 6 5 7 or 5 5 7.
* However, with the exception that if "equalOk" is true, equality is allowed,
* such as 5 5 7 or 5 5 5.
*/
public boolean inOrderEqual(int a, int b, int c, boolean equalOk) {
return equalOk ? (a <= b && b <= c) : (a < b && b < c);
}
/**
* Given three ints, a b c, return true if two or more of them have the same rightmost digit.
* The ints are non-negative. Note: the % "mod" operator computes the remainder, e.g. 17 % 10 is 7.
*/
public boolean lastDigit(int a, int b, int c) {
return (a %= 10) == (b %= 10) || a == (c %= 10) || b == c;
}
/**
* Given three ints, a b c, return true if one of them is 10 or more less than one of the others.
*/
public boolean lessBy10(int a, int b, int c) {
return Math.abs(a - b) > 9 || Math.abs(a - c) > 9 || Math.abs(b - c) > 9;
}
/**
* Return the sum of two 6-sided dice rolls, each in the range 1..6.
* However, if noDoubles is true, if the two dice show the same value, increment one die to the next value,
* wrapping around to 1 if its value was 6.
*/
public int withoutDoubles(int die1, int die2, boolean noDoubles) {
return die1 + (noDoubles && die1 == die2 ? die2 % 6 + 1 : die2);
}
/**
* Given two int values, return whichever value is larger.
* However if the two values have the same remainder when divided by 5, then the return the smaller value.
* However, in all cases, if the two values are the same, return 0.
* Note: the % "mod" operator computes the remainder, e.g. 7 % 5 is 2.
*/
public int maxMod5(int a, int b) {
return (a == b) ? 0
: (a - b) % 5 == 0 ? Math.min(a, b)
: Math.max(a, b);
}
/**
* You have a red lottery ticket showing ints a, b, and c, each of which is 0, 1, or 2.
* If they are all the value 2, the result is 10. Otherwise if they are all the same, the result is 5.
* Otherwise so long as both b and c are different from a, the result is 1. Otherwise the result is 0.
*/
public int redTicket(int a, int b, int c) {
return (a == b && b == c)
? (a == 2) ? 10 : 5
: (a != b && a != c) ? 1 : 0;
}
/**
* You have a green lottery ticket, with ints a, b, and c on it.
* If the numbers are all different from each other, the result is 0.
* If all of the numbers are the same, the result is 20.
* If two of the numbers are the same, the result is 10.
*/
public int greenTicket(int a, int b, int c) {
return (a == b && b == c) ? 20
: (a == b || a == c || b == c) ? 10 : 0;
}
/**
* You have a blue lottery ticket, with ints a, b, and c on it.
* This makes three pairs, which we'll call ab, bc, and ac.
* Consider the sum of the numbers in each pair. If any pair sums to exactly 10, the result is 10.
* Otherwise if the ab sum is exactly 10 more than either bc or ac sums, the result is 5.
* Otherwise the result is 0.
*/
public int blueTicket(int a, int b, int c) {
return (a + b == 10 || b + c == 10 || a + c == 10) ? 10
: (a + b == b + c + 10 || a + b == a + c + 10) ? 5 : 0;
}
/**
* Given two ints, each in the range 10..99, return true if there is a digit that appears in both numbers,
* such as the 2 in 12 and 23. (Note: division, e.g. n/10, gives the left digit while the % "mod" n%10 gives
* the right digit.)
*/
public boolean shareDigit(int a, int b) {
return a / 10 == b / 10
|| a / 10 == b % 10
|| a % 10 == b / 10
|| a % 10 == b % 10;
}
/**
* Given 2 non-negative ints, a and b, return their sum, so long as the sum has the same number of digits as a.
* If the sum has more digits than a, just return a without b. (Note: one way to compute the number of digits
* of a non-negative int n is to convert it to a string with String.valueOf(n) and then check the length of
* the string.)
*/
public int sumLimit(int a, int b) {
return (a + b + "").length() == (a + "").length() ? a + b : a;
}
}