Skip to content

Commit

Permalink
Solve p10 in fortran
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Oct 7, 2024
1 parent a2f47c4 commit a7b4c48
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Olivia's Project Euler Solutions
| | | | |CodeQL| |br| |
| | | | |C#-lint| |
+------------+----------------------------+--------+-------------------+
| Fortran | Fortran 95+ in |gcc|, |br| | 16 | |Fri| |
| Fortran | Fortran 95+ in |gcc|, |br| | 17 | |Fri| |
| | |flang|, |nvf|, |br| |ifx| | | |
+------------+----------------------------+--------+-------------------+
| Java | Java 8+ in Corretto, |br| | 22 | |Javai| |br| |
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Problems Solved
+-----------+-----------+------------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`009`|:c-d:`0009`|:cp-d:`0009`|:cs-d:`0009`|:fr-d:`0009`|:ja-d:`0009`|:js-d:`0009`|:lu-d:`0009`|:py-d:`0009`|:rs-d:`0009`|
+-----------+-----------+------------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`010`|:c-d:`0010`|:cp-d:`0010`|:cs-d:`0010`| |:ja-d:`0010`|:js-d:`0010`|:lu-d:`0010`|:py-d:`0010`|:rs-d:`0010`|
|:prob:`010`|:c-d:`0010`|:cp-d:`0010`|:cs-d:`0010`|:fr-d:`0010`|:ja-d:`0010`|:js-d:`0010`|:lu-d:`0010`|:py-d:`0010`|:rs-d:`0010`|
+-----------+-----------+------------+------------+------------+------------+------------+------------+------------+------------+
|:prob:`011`|:c-d:`0011`|:cp-d:`0011`|:cs-d:`0011`|:fr-d:`0011`|:ja-d:`0011`|:js-d:`0011`|:lu-d:`0011`|:py-d:`0011`|:rs-d:`0011`|
+-----------+-----------+------------+------------+------------+------------+------------+------------+------------+------------+
Expand Down
2 changes: 0 additions & 2 deletions docs/src/fortran/lib/constants.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ View source code :source:`fortran/include/constants.f90`

Denotes the exit codes of different failure modes, counting up from 1

.. f:variable:: ANSWERS_TSV_SIZE
:type: integer
.. f:variable:: ANSWERT_STR_SIZE
:type: integer

Expand Down
33 changes: 17 additions & 16 deletions fortran/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,19 +108,20 @@ except for test plugins. At the moment there are no dependencies for this sectio
Problems Solved
---------------

- ☒ `1 <./src/p0001.f95>`__
- ☒ `2 <./src/p0002.f95>`__
- ☒ `3 <./src/p0003.f95>`__
- ☒ `4 <./src/p0004.f95>`__
- ☒ `5 <./src/p0005.f95>`__
- ☒ `6 <./src/p0006.f95>`__
- ☒ `7 <./src/p0007.f95>`__
- ☒ `8 <./src/p0008.f95>`__
- ☒ `9 <./src/p0009.f95>`__
- ☒ `11 <./src/p0011.f95>`__
- ☒ `13 <./src/p0013.f95>`__
- ☒ `17 <./src/p0017.f95>`__
- ☒ `28 <./src/p0028.f95>`__
- ☒ `34 <./src/p0034.f95>`__
- ☒ `76 <./src/p0076.f95>`__
- ☒ `836 <./src/p0836.f95>`__
- ☒ `1 <./src/p0001.f90>`__
- ☒ `2 <./src/p0002.f90>`__
- ☒ `3 <./src/p0003.f90>`__
- ☒ `4 <./src/p0004.f90>`__
- ☒ `5 <./src/p0005.f90>`__
- ☒ `6 <./src/p0006.f90>`__
- ☒ `7 <./src/p0007.f90>`__
- ☒ `8 <./src/p0008.f90>`__
- ☒ `9 <./src/p0009.f90>`__
- ☒ `10 <./src/p0010.f90>`__
- ☒ `11 <./src/p0011.f90>`__
- ☒ `13 <./src/p0013.f90>`__
- ☒ `17 <./src/p0017.f90>`__
- ☒ `28 <./src/p0028.f90>`__
- ☒ `34 <./src/p0034.f90>`__
- ☒ `76 <./src/p0076.f90>`__
- ☒ `836 <./src/p0836.f90>`__

0 comments on commit a7b4c48

Please sign in to comment.