This repository contains two Dart tasks demonstrating core programming concepts.
- Implemented a base
Accountclass - Created
SavingsAccountandCheckingAccountsubclasses - Demonstrated:
- Inheritance
- Method overriding
- Polymorphism
- Included test cases in
main.dart
- Processed a list of students represented as maps
- Removed duplicate students by name while keeping the highest score
- Sorted students in descending order by score
- Printed the final processed list