Computer Science, asked by navyasreekallamsree, 15 days ago

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 abs(num) computes the absolute value of a number.​

Answers

Answered by 107859504699232
1

Answer:

a and b. b hhhhh

Explanation:

beacuce of it

Answered by ARandomDude
1

If this  question is from codingbat(dot)com,then i believe this  is the answer

def love6(a, b):

 return (a == 6 or b == 6 or a + b == 6 or b - a == 6 or a - b == 6)

Similar questions