A very simple simulation where robots collect minerals.
# Stack and Queue Implementation of Stack and Queue (circular queue) data structures in Pharo. Testing Stack code in Playground (attaching images for reference)  Output  Testing code for Queue in Playground  Output  # Warshall Algorithm Implementation of Warshall algorithm to find transitive closure  # Bisection Method Implementation of Bisection Method to find root of an equation  # Lagrange's Interpolation Implementation of Lagrange's Interpolation to estimate the value of a function at any point within a certain range  Reference: [CLRS](https://enos.itcollege.ee/~japoia/algorithms/GT/Introduction_to_algorithms-3rd%20Edition.pdf), My notes from [Discrete Mathematics](https://drive.google.com/file/d/1l5OkJ-YzEgJ-BQTXcohp07My7oBhLLCz/view?usp=drive_link) and [Numerical Methods](https://drive.google.com/file/d/1l-w6sdQbVBSLB8s0cQTPqchTvAMQFN3c/view?usp=sharing) Work in progress as of now. I might add the Pharo implementation of more data structures and algorithms or some other basic beginner level programs that I used to write in JAVA. Next topics to implement: > Bubble sort, Newton Raphson method, Breadth First Search, Depth First Search