-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogic-2.py
More file actions
71 lines (58 loc) · 3.18 KB
/
Logic-2.py
File metadata and controls
71 lines (58 loc) · 3.18 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
def make_bricks(small, big, goal):
"""
We want to make a row of bricks that is goal inches long.
We have a number of small bricks (1 inch each) and big bricks (5 inches each).
Return True if it is possible to make the goal by choosing from the given bricks.
This is a little harder than it looks and can be done without any loops.
See also: Introduction to MakeBricks (https://codingbat.com/doc/practice/makebricks-introduction.html)
"""
return small >= max(goal % 5, goal - (big * 5))
def lone_sum(a, b, c):
"""
Given 3 int values, a b c, return their sum.
However, if one of the values is the same as another of the values, it does not count towards the sum.
"""
return sum([x for x in [a, b, c] if [a, b, c].count(x) == 1])
def lucky_sum(a, b, c):
"""
Given 3 int values, a b c, return their sum.
However, if one of the values is 13 then it does not count towards the sum and values to its right do not count.
So for example, if b is 13, then both b and c do not count.
"""
return sum([a, b, c][:([a, b, c].index(13) if 13 in [a, b, c] else 3)])
def no_teen_sum(a, b, c):
"""
Given 3 int values, a b c, return their sum.
However, if any of the values is a teen -- in the range 13..19 inclusive -- then that value counts as 0,
except 15 and 16 do not count as a teens. Write a separate helper "def fix_teen(n):" that takes in an int value
and returns that value fixed for the teen rule. In this way, you avoid repeating the teen code 3 times
(i.e. "decomposition"). Define the helper below and at the same indent level as the main no_teen_sum().
"""
# no thank you i will not write fix_teen
return sum(x for x in [a, b, c] if x in [15, 16] or x < 13 or x > 19)
def round_sum(a, b, c):
"""
For this problem, we'll round an int value up to the next multiple of 10 if its rightmost digit is 5 or more,
so 15 rounds up to 20. Alternately, round down to the previous multiple of 10 if its rightmost digit is less than 5,
so 12 rounds down to 10. Given 3 ints, a b c, return the sum of their rounded values. To avoid code repetition,
write a separate helper "def round10(num):" and call it 3 times. Write the helper entirely below and
at the same indent level as round_sum().
"""
return int(sum(round(x, -1) for x in [a, b, c]))
def close_far(a, b, c):
"""
Given three ints, a b c, return True if one of b or c is "close" (differing from a by at most 1),
while the other is "far", differing from both other values by 2 or more.
Note: abs(num) computes the absolute value of a number.
"""
return abs(b - c) > 1 and (abs(a - b) < 2) ^ (abs(a - c) < 2)
def make_chocolate(small, big, goal):
"""
We want make a package of goal kilos of chocolate.
We have small bars (1 kilo each) and big bars (5 kilos each).
Return the number of small bars to use, assuming we always use big bars before small bars.
Return -1 if it can't be done.
"""
return max(goal % 5, goal - big * 5) if max(goal % 5, goal - big * 5) <= small else -1
# if codingbat was cool and had a new version of python:
#return n if (n := max(goal % 5, goal - big * 5)) <= small else -1