Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 461 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 461 Bytes

Description

  • The program simulates Swift's memory management principles using Python.
  • It represents a 2D array (matrix) and its equivalent 1D array (vector).
  • The program is organized into a class 'Memory', which encapsulates various methods for handling and manipulating theses arrays.

What I Learned

  • Array manipulation
  • Class and Object-Oriented Programming
  • Menu-driven interface
  • Understanding data equivalency
  • Memory management simulations