Questions in this assignment are not finalized yet. DO NOT COMPLETE
File Name: “ICS3Uintersection.py”
You are designing a program that can find the point of intersection of 2 straight diagonal lines (You don’t need to consider vertical or horizontal lines).
You will need to get the inputs for TWO linear equations in order to solve the problem
File Name: “ICS3UEmiliaNumbers.py”
A positive Integer will be an “Emilia Number” if it has at least two sets of factors where the sum of one set equals the difference of another set.
For Example:
Write a function that finds Emilia Numbers, and then use it to count how many Emilia numbers would you find for the numbers from 1 to 1000
File Name: “ICS3UrepeatCipher.py”
You are sending a message to your friend. Instead of sending the actual message, you send a set of consecutive characters that represent the real letter. The number of consecutive characters determines the real letter.
If you sent the message:
It would decode to HELLO because there are
You need to write a program that DECODES messages