Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Hubspot Amulet by imloafer
def checkio(matrix):
for f in range(-180, 181, 5):
for s in range(-180, 181, 5):
for t in range(-180, 181, 5):
if (matrix[0][0] * f + matrix[1][0] * s + matrix[2][0] * t) % 360 == 0 and \
(matrix[0][1] * f + matrix[1][1] * s + matrix[2][1] * t) % 360 == 225 and \
(matrix[0][2] * f + matrix[1][2] * s + matrix[2][2] * t) % 360 == 315:
return f, s, t
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
def check_it(func, matrix):
result = func(matrix)
if not all(-180 <= el <= 180 for el in result):
print("The angles must be in range from -180 to 180 inclusively.")
return False
f, s, t = result
temp = [0, 0, 0]
temp[0] += f
temp[1] += matrix[0][1] * f
temp[2] += matrix[0][2] * f
temp[0] += matrix[1][0] * s
temp[1] += s
temp[2] += matrix[1][2] * s
temp[0] += matrix[2][0] * t
temp[1] += matrix[2][1] * t
temp[2] += t
temp = [n % 360 for n in temp]
if temp == [0, 225, 315]:
return True
else:
print("This is the wrong final position {0}.".format(temp))
return False
assert check_it(checkio,
[[1, 2, 3],
[3, 1, 2],
[2, 3, 1]]), "1st example"
assert check_it(checkio,
[[1, 4, 2],
[2, 1, 2],
[2, 2, 1]]), "2nd example"
assert check_it(checkio,
[[1, 2, 5],
[2, 1, 1],
[2, 5, 1]]), "3rd example"
print('done')
March 31, 2023