Question: Need to be done in Python Question 1: Integer Right Triangles Given a perimeter of 60, we can find two right triangles with integral length
Need to be done in Python
Question 1: Integer Right Triangles
Given a perimeter of 60, we can find two right triangles with integral length sides: [(10, 24, 26), (15, 20, 25)]. Complete the following function, which takes an integer p and returns a list of tuples (a, b, c) corresponding to the integral lengths of the sides of comforming right triangles. Each tuple should have a?b
Note that your solution should take care to limit the number of triangles it tests --- your function must complete in under 3 seconds for all values of pused in the tests below to earn credit.
___________________________________________________________________________________________
Need to be done in Python
Question 2: Simple ASCII Art
For this next exercise, you'll need to complete the function print_pattern, which, when called with a string of length ? 1, will print an ASCII art pattern of concentric diamonds using those characters.
Sample input 1:
X
Sample output 1:
X
Sample input 2:
XY
Sample output 2:
..Y.. Y.X.Y ..Y..
Sample input 3:
WXYZ
Sample output 3:
......Z...... ....Z.Y.Z.... ..Z.Y.X.Y.Z.. Z.Y.X.W.X.Y.Z ..Z.Y.X.Y.Z.. ....Z.Y.Z.... ......Z......
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
