Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanBaird authored Aug 26, 2022
1 parent 2e158d3 commit 1f09138
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Third_Angle_of_a_Triangle_kyu8.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Finding the angle of the last corner in a triangle given two of the angles
# Set the angle of a triangle and take away the two given angles

def other_angle(a, b):
return 180 - (a + b)

0 comments on commit 1f09138

Please sign in to comment.