Skip to content

CodeVITap/ProjectEuler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProjectEuler Solutions

Index

Problem Title Python C++ Java
Multiples of 3 and 5 001 001 001
Even Fibonacci numbers 002 002 002
Largest prime factor 003 <link> <link>
Largest palindrome product 004 <link> <link>
Smallest multiple 005 <link> <link>
Sum square difference 006 <link> <link>
10001st prime 007 <link> <link>
Largest product in a series 008 008 <link>
Special Pythagorean Triplet 009 <link> <link>
Summation of primes 010 <link> <link>
Largest product in a grid 011 <link> <link>
Highly divisible triangular number 012 012 <link>
Large sum 013 <link> <link>
Longest Collatz sequence 014 014 <link>
Lattice paths 015 <link> <link>
Power digit sum 016 <link> <link>
Number Letter Count 017 <link> <link>
Amicable numbers <link> 021 <link>
Digit fifth powers 030 030-1 030 <link>
Triangular, pentagonal, and hexagonal <link> 045 <link>

Cloning the repository

Cloning over HTTPS:

$ git clone https://github.com/CodeVITap/ProjectEuler.git
$ cd ProjectEuler
$ ls

Cloning over SSH:

$ git clone [email protected]:CodeVITap/ProjectEuler.git
$ cd ProjectEuler
$ ls

Compiler Specifications

C++:

All the codes posted on this repository are compliant with the C++ 11 standards. Older standards may work, but are not supported.

Python:

All the scripts posted on this repostiory are meant to be run only on Python 3.*. Older versions of Python may work with slight modifications.