kelvins / algorithms-and-data-structures

:abacus: Algorithms and Data Structures in several Programming Languages
MIT License
1.04k stars 256 forks source link

Adding Elixir, made changes to Readme #341

Closed TestingGround00 closed 6 months ago

TestingGround00 commented 6 months ago

Description of changes

  1. Adding a few elixir scripts

    • CalculatePi.ex --> Approximate a value of pi
    • FactorialIterative.ex --> Returns a factorial for a given n, in an iterative manner.
    • FactorialRecursive.ex --> Returns a factorial for a given n, in an recursive manner.
    • FibonacciIterative.ex --> Returns a Fibonacci value for a given n, in an iterative manner.
    • FibonacciRecursive.ex --> Returns a Fibonacci value for a given n, in a recursive manner.
    • MaxRecursive.ex --> Find largest value in a list.
  2. Added elixir logo

  3. Updated README.md

    • Added a column for Elixir in each table.
    • Mapped the scripts.
    • Replaced references to multiple online compilers with one singular compiler.
    • Added instructions on how to access compiler sites for each language.
    • Centered the title.
    • Added the Back to top button.
    • Finally, linked each topic/item to its specific site.
TestingGround00 commented 6 months ago

Need to add more things.