Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.26 KB

README.md

File metadata and controls

26 lines (18 loc) · 1.26 KB

#Learn-Rust

This repo contains various sample programs I made to learn Rust.

####131Easy This is an excercise from /r/DailyProgrammer.
Link to the challenge

####Tiny Assembler This is excercise 132 from /r/DailyProgrammer. It is a simple assembler for a fictional architecture.
Link to the challenge

####N-Dimensional Vectors Another excercise from /r/DailyProgrammer.
This program computes dot products, unit vectors, and lengths for n-dimensional vectors
Link to the challenge

####Game of Life This is an implementation of Conway's Game of Life that runs in the terminal.

Usage: ./game_of_life [File]
    [File]: Contains the starting grid. x means alive and . means dead.

I included several example inputs for the program, all sourced from the Game of Life's Wikipedia entry