School Commit Init
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
# :computer: Assignment 05
|
||||
|
||||
## Requirements
|
||||
- Use functions to: `read a complex number` from the console, `write a complex number` to the console, implement `each required functionality`.
|
||||
- Functions communicate using input parameter(s) and the return statement (**DO NOT use** global variables, nested functions, the `global` or `nonlocal` keywords)
|
||||
- Have two separate representations for each complex number, one using a `list` and another using a `dictionary`. Write methods to create a new complex number, to get and set each number's real and imaginary parts as well as to transform a number into its `str` representation. The program must work with both implementations, by either commenting out one of them or changing the order in which the corresponding functions are defined.
|
||||
- Separate input/output functions (those using `print` and `input` statements) from those performing the calculations (see **program.py**)
|
||||
- Provide the user with a menu-driven console-based user interface. Input data should be read from the console and the results printed to the console. At each step, the program must provide the user the context of the operation (do not display an empty prompt).
|
||||
- Deadline is **week 7** for maximum grade, week 9 is a hard deadline.
|
||||
|
||||
## Problem Statement
|
||||
Implement a menu-driven console application that provides the following functionalities:
|
||||
1. Read a list of complex numbers (in `z = a + bi` form) from the console.
|
||||
2. Display the entire list of numbers on the console.
|
||||
3. Display on the console the sequence, subarray or numbers required by the properties that were assigned to you. Each student will receive one property from **Set A** and another one from **Set B**.
|
||||
4. Exit the application.
|
||||
|
||||
**The source code will include:**
|
||||
- Specifications for the functions related to point 3 above.
|
||||
- 10 complex numbers already available at program startup.
|
||||
|
||||
### Set A (naive implementation)
|
||||
1. Length and elements of a longest subarray of distinct numbers.
|
||||
2. Length and elements of a longest subarray of numbers having the same modulus.
|
||||
3. Length and elements of a longest subarray of numbers having increasing modulus.
|
||||
4. Length and elements of a longest subarray of numbers that contain at most 3 distinct values.
|
||||
5. Length and elements of a longest subarray of numbers where each number's modulus is in the `[0, 10]` range.
|
||||
6. Length and elements of a longest subarray of numbers where the difference between the modulus of consecutive numbers is a prime number.
|
||||
7. Length and elements of a longest subarray of numbers where their real part is in the form of a mountain (first the values increase, then they decrease). (e.g. `1-i, 2+6i, 4-67i, 90+3i, 80-7i, 76+i, 43-12i, 3`)
|
||||
8. Length and elements of a longest subarray of numbers where both their real and imaginary parts can be written using the same base 10 digits (e.g. `1+3i, 31i, 33+i, 111, 11-313i`)
|
||||
|
||||
## Set B (dynamic programming implementation required)
|
||||
9. The length and elements of a longest increasing subsequence, when considering each number's modulus
|
||||
10. The length and elements of a longest increasing subsequence, when considering each number's real part
|
||||
11. The length and elements of a maximum subarray sum, when considering each number's real part
|
||||
12. The length and elements of a longest alternating subsequence, when considering each number's real part (e.g., given sequence [1, 3, 2, 4, 10, 6, 1], [1, 3, 2, 10] is an alternating subsequence, because 1 < 3 > 2 < 10)
|
||||
13. The length of a longest alternating subsequence, when considering each number's modulus (e.g., given sequence [1, 3, 2, 4, 10, 6, 1], [1, 3, 2, 10] is an alternating subsequence, because 1 < 3 > 2 < 10)
|
||||
|
||||
## Observations
|
||||
- Elements of a **subarray** are in consecutive order of their appearance in the array, while in a **subsequence**, this isn't necessarily true.
|
||||
- The longest subarray/subsequence might not be unique, so determining a single one is sufficient.
|
||||
- Understand and be able to explain the time and extra-space computational complexity of your implementation.
|
||||
Reference in New Issue
Block a user