From be43e7d2a72ac5b688f3b450f98999631dcc9dd2 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Tue, 14 Feb 2023 21:24:08 -0600 Subject: [PATCH] Added README files --- README.md | 5 +++++ mult3or5/README.md | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 README.md create mode 100644 mult3or5/README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..bae61e0 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +## Project Euler Solutions + +This repository contains my solutions to the [Project Euler problems](https://projecteuler.net/archives), written - to the best of my abilities - in 32-bit ARM Assembly. + +The Assembly code was written and tested on a Raspberry Pi 3B, and contains C code to facilitate formatted input and output. diff --git a/mult3or5/README.md b/mult3or5/README.md new file mode 100644 index 0000000..9c667eb --- /dev/null +++ b/mult3or5/README.md @@ -0,0 +1,3 @@ +## Multiples of 3 or 5 + +This directory contains my solution to the ['Multiples of 3 or 5' problem](https://projecteuler.net/problem=1).