summaryrefslogtreecommitdiff
path: root/1/part1.f90
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2022-12-01 22:30:22 +0100
committerBond_009 <bond.009@outlook.com>2022-12-01 22:30:22 +0100
commitbaf4910870a6e8999802b9a4a22eabd4142a34e3 (patch)
tree2d11443dc21e53bd0d99d015cf789937d6d95862 /1/part1.f90
parent49d0c908f24b2c193c9deed1716fe36061ba26a1 (diff)
Move all Advent of Codes into one repo
Diffstat (limited to '1/part1.f90')
-rw-r--r--1/part1.f9025
1 files changed, 0 insertions, 25 deletions
diff --git a/1/part1.f90 b/1/part1.f90
deleted file mode 100644
index a7c09c8..0000000
--- a/1/part1.f90
+++ /dev/null
@@ -1,25 +0,0 @@
-program day1
- implicit none
-
- integer, parameter :: input_len = 200
- integer, parameter :: search = 2020
-
- integer :: i, j
- integer, dimension(input_len) :: input
-
- open(10, file='input', status='old')
- do i = 1, input_len
- read(10, *) input(i)
- end do
- close(10)
-
- do i = 1, input_len
- do j = 1, input_len
- if (input(i) + input(j) == search) then
- print *, input(i) * input(j)
- stop
- end if
- end do
- end do
-
-end program day1