├── .gitignore ├── 01_Multiples-of-3-and-5.cpp ├── 02_Even-Fibonacci-Numbers.cpp ├── 03_Largest-prime-factor.cpp ├── 04_Largest-palindrome-product.cpp ├── 05_Smallest-multiple.cpp ├── 06_Sum-square-difference.cpp ├── 07_10001st-prime.cpp ├── 08_Largest-product-in-a-series.cpp ├── 09_Special-Pythagorean-triplet.cpp ├── 102_Triangle-containment.cpp ├── 103_Special-subset-sums-optimum.cpp ├── 104_Pandigital-Fibonacci-ends.cpp ├── 105_Special-subset-sums.cpp ├── 107_Minimal-network.cpp ├── 10_Summation-of-primes.cpp ├── 111_Primes-with-runs.py ├── 113_Non-bouncy-numbers.cpp ├── 114_Counting-block-combinations.cpp ├── 116_Red-green-or-blue-tiles.cpp ├── 117_Red-green-and-blue-tiles.cpp ├── 118_Pandigital-prime-sets.cpp ├── 119_Digit-power-sum.cpp ├── 11_Largest-product-in-a-grid.cpp ├── 121_Disc-game-prize-fund.cpp ├── 12_Highly-divisible-trangular-number.cpp ├── 13_Large-sum.cpp ├── 14_Longest-Collatz-sequence.cpp ├── 150_Searching-a-triangular-array-for-a-sub-triangle-having-minimum-sum.cpp ├── 159_Digital-root-sums-of-factorisations.cpp ├── 15_Lattice-paths.cpp ├── 161_Triominoes.cpp ├── 162_Hexadecimal-numbers.cpp ├── 16_Power-digit-sum.cpp ├── 17_Number-to-Words.cpp ├── 186_Connectedness-of-a-network.cpp ├── 187_Semiprimes.cpp ├── 18_Maximum-path-sum-I.cpp ├── 197_Investigating-the-behaviour-of-a-recursively-defined-sequence.cpp ├── 19_Counting-sundays.cpp ├── 200_Find-the-200th-prime-proof-sqube-containing-the-contiguous-substring-200.cpp ├── 201_Subsets-with-a-unique-sum.cpp ├── 207_Integer-partition-equations ├── 207_Integer-partition-equations.py ├── 20_Factorial-digit-sum.cpp ├── 211_Divisor-square-sum.cpp ├── 21_Amicable-numbers.cpp ├── 22_Names-scores.cpp ├── 23_Non-abundant-sums.cpp ├── 24_Lexicographic-permutations.cpp ├── 25_N-digit-Fibonacci-number.cpp ├── 26_Reciprocal-cycles.cpp ├── 27_Quadratic-primes.cpp ├── 30_Digit-Nth-powers.cpp ├── 31_Coin-sums.cpp ├── 32_Pandigital-products.cpp ├── 33_Digit-canceling-fractions.cpp ├── 34_Digit-factorials.cpp ├── 35_Circular-primes.cpp ├── 36_Double-base-palindromes.js ├── 37_Truncatable-primes.cpp ├── 38_Pandigital-multiples.cpp ├── 39_Integer-right-triangles.cpp ├── 40_Champernowne's-constant.cpp ├── 41_Pandigital-prime.cpp ├── 42_Coded-triangle-numbers.cpp ├── 43_Substring-divisibility.cpp ├── 44_Pentagon-numbers.cpp ├── 45_Triangular-pentagonal-and-hexagonal.cpp ├── 46-Goldbach's-other-conjecture.cpp ├── 47_Distinct-prime-factors.cpp ├── 49_Prime-permutations.cpp ├── 51_Consecutive-prime-sum.cpp ├── 51_Prime-digit-replacements.cpp ├── 52_Permuted-multiples.cpp ├── 53_Combinatoric-selections.py ├── 53_Combinatoric-selections.py~ ├── 54_Poker-hands.cpp ├── 55_Lychrel-numbers.cpp ├── 56_Powerful-digit-sum.cpp ├── 57_Square-root-convergents.cpp ├── 58_Spiral-primes.cpp ├── 59_XOR-decryption.cpp ├── 60_Prime-pair-sets.cpp ├── 61_Cyclical-figurate-numbers.cpp ├── 62_Cubic-permutations.cpp ├── 63_Powerful-digit-counts.cpp ├── 65_Convergents-of-e.py ├── 65_Convergents-of-e.py~ ├── 65_Odd-period-square-roots.cpp ├── 66_Diophantine-equation.py ├── 66_Diophantine-equation.py~ ├── 67_Maximum-path-sum-II.cpp ├── 68_Magic-N-gon-ring.cpp ├── 69_Totient-maximum.cpp ├── 70_Totient-permutation.cpp ├── 70_Totient-permutations.cpp ├── 72_Counting-fractions.cpp ├── 74_Digit-factorial-chains.cpp ├── 75_Singular-integer-right-triangles.cpp ├── 76_Counting-summations.cpp ├── 77_Prime-summations.cpp ├── 78_Coin-partitions.cpp ├── 79_Passcode-derivation.cpp ├── 80_Square-root-digital-expansion.py ├── 81_Path-sum-two-ways.cpp ├── 82_Path-sum-three-ways.cpp ├── 83_Path-sum-four-ways.cpp ├── 85_Counting-rectangles.cpp ├── 87_Prime-power-triples.cpp ├── 88_Product-sum-numbers.cpp ├── 89_Roman-numerals.cpp ├── 95_Amicable-chains.cpp ├── 96_Su-Doku ├── 97_Large-non-Mersenne-prime.cpp ├── 98_Anagramic-squares.cpp ├── 99_Largest-exponential.cpp └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.cpp~ 3 | -------------------------------------------------------------------------------- /01_Multiples-of-3-and-5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/01_Multiples-of-3-and-5.cpp -------------------------------------------------------------------------------- /02_Even-Fibonacci-Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/02_Even-Fibonacci-Numbers.cpp -------------------------------------------------------------------------------- /03_Largest-prime-factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/03_Largest-prime-factor.cpp -------------------------------------------------------------------------------- /04_Largest-palindrome-product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/04_Largest-palindrome-product.cpp -------------------------------------------------------------------------------- /05_Smallest-multiple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/05_Smallest-multiple.cpp -------------------------------------------------------------------------------- /06_Sum-square-difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/06_Sum-square-difference.cpp -------------------------------------------------------------------------------- /07_10001st-prime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/07_10001st-prime.cpp -------------------------------------------------------------------------------- /08_Largest-product-in-a-series.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/08_Largest-product-in-a-series.cpp -------------------------------------------------------------------------------- /09_Special-Pythagorean-triplet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/09_Special-Pythagorean-triplet.cpp -------------------------------------------------------------------------------- /102_Triangle-containment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/102_Triangle-containment.cpp -------------------------------------------------------------------------------- /103_Special-subset-sums-optimum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/103_Special-subset-sums-optimum.cpp -------------------------------------------------------------------------------- /104_Pandigital-Fibonacci-ends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/104_Pandigital-Fibonacci-ends.cpp -------------------------------------------------------------------------------- /105_Special-subset-sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/105_Special-subset-sums.cpp -------------------------------------------------------------------------------- /107_Minimal-network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/107_Minimal-network.cpp -------------------------------------------------------------------------------- /10_Summation-of-primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/10_Summation-of-primes.cpp -------------------------------------------------------------------------------- /111_Primes-with-runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/111_Primes-with-runs.py -------------------------------------------------------------------------------- /113_Non-bouncy-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/113_Non-bouncy-numbers.cpp -------------------------------------------------------------------------------- /114_Counting-block-combinations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/114_Counting-block-combinations.cpp -------------------------------------------------------------------------------- /116_Red-green-or-blue-tiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/116_Red-green-or-blue-tiles.cpp -------------------------------------------------------------------------------- /117_Red-green-and-blue-tiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/117_Red-green-and-blue-tiles.cpp -------------------------------------------------------------------------------- /118_Pandigital-prime-sets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/118_Pandigital-prime-sets.cpp -------------------------------------------------------------------------------- /119_Digit-power-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/119_Digit-power-sum.cpp -------------------------------------------------------------------------------- /11_Largest-product-in-a-grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/11_Largest-product-in-a-grid.cpp -------------------------------------------------------------------------------- /121_Disc-game-prize-fund.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/121_Disc-game-prize-fund.cpp -------------------------------------------------------------------------------- /12_Highly-divisible-trangular-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/12_Highly-divisible-trangular-number.cpp -------------------------------------------------------------------------------- /13_Large-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/13_Large-sum.cpp -------------------------------------------------------------------------------- /14_Longest-Collatz-sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/14_Longest-Collatz-sequence.cpp -------------------------------------------------------------------------------- /150_Searching-a-triangular-array-for-a-sub-triangle-having-minimum-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/150_Searching-a-triangular-array-for-a-sub-triangle-having-minimum-sum.cpp -------------------------------------------------------------------------------- /159_Digital-root-sums-of-factorisations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/159_Digital-root-sums-of-factorisations.cpp -------------------------------------------------------------------------------- /15_Lattice-paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/15_Lattice-paths.cpp -------------------------------------------------------------------------------- /161_Triominoes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/161_Triominoes.cpp -------------------------------------------------------------------------------- /162_Hexadecimal-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/162_Hexadecimal-numbers.cpp -------------------------------------------------------------------------------- /16_Power-digit-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/16_Power-digit-sum.cpp -------------------------------------------------------------------------------- /17_Number-to-Words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/17_Number-to-Words.cpp -------------------------------------------------------------------------------- /186_Connectedness-of-a-network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/186_Connectedness-of-a-network.cpp -------------------------------------------------------------------------------- /187_Semiprimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/187_Semiprimes.cpp -------------------------------------------------------------------------------- /18_Maximum-path-sum-I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/18_Maximum-path-sum-I.cpp -------------------------------------------------------------------------------- /197_Investigating-the-behaviour-of-a-recursively-defined-sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/197_Investigating-the-behaviour-of-a-recursively-defined-sequence.cpp -------------------------------------------------------------------------------- /19_Counting-sundays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/19_Counting-sundays.cpp -------------------------------------------------------------------------------- /200_Find-the-200th-prime-proof-sqube-containing-the-contiguous-substring-200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/200_Find-the-200th-prime-proof-sqube-containing-the-contiguous-substring-200.cpp -------------------------------------------------------------------------------- /201_Subsets-with-a-unique-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/201_Subsets-with-a-unique-sum.cpp -------------------------------------------------------------------------------- /207_Integer-partition-equations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/207_Integer-partition-equations -------------------------------------------------------------------------------- /207_Integer-partition-equations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/207_Integer-partition-equations.py -------------------------------------------------------------------------------- /20_Factorial-digit-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/20_Factorial-digit-sum.cpp -------------------------------------------------------------------------------- /211_Divisor-square-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/211_Divisor-square-sum.cpp -------------------------------------------------------------------------------- /21_Amicable-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/21_Amicable-numbers.cpp -------------------------------------------------------------------------------- /22_Names-scores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/22_Names-scores.cpp -------------------------------------------------------------------------------- /23_Non-abundant-sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/23_Non-abundant-sums.cpp -------------------------------------------------------------------------------- /24_Lexicographic-permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/24_Lexicographic-permutations.cpp -------------------------------------------------------------------------------- /25_N-digit-Fibonacci-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/25_N-digit-Fibonacci-number.cpp -------------------------------------------------------------------------------- /26_Reciprocal-cycles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/26_Reciprocal-cycles.cpp -------------------------------------------------------------------------------- /27_Quadratic-primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/27_Quadratic-primes.cpp -------------------------------------------------------------------------------- /30_Digit-Nth-powers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/30_Digit-Nth-powers.cpp -------------------------------------------------------------------------------- /31_Coin-sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/31_Coin-sums.cpp -------------------------------------------------------------------------------- /32_Pandigital-products.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/32_Pandigital-products.cpp -------------------------------------------------------------------------------- /33_Digit-canceling-fractions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/33_Digit-canceling-fractions.cpp -------------------------------------------------------------------------------- /34_Digit-factorials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/34_Digit-factorials.cpp -------------------------------------------------------------------------------- /35_Circular-primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/35_Circular-primes.cpp -------------------------------------------------------------------------------- /36_Double-base-palindromes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/36_Double-base-palindromes.js -------------------------------------------------------------------------------- /37_Truncatable-primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/37_Truncatable-primes.cpp -------------------------------------------------------------------------------- /38_Pandigital-multiples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/38_Pandigital-multiples.cpp -------------------------------------------------------------------------------- /39_Integer-right-triangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/39_Integer-right-triangles.cpp -------------------------------------------------------------------------------- /40_Champernowne's-constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/40_Champernowne's-constant.cpp -------------------------------------------------------------------------------- /41_Pandigital-prime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/41_Pandigital-prime.cpp -------------------------------------------------------------------------------- /42_Coded-triangle-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/42_Coded-triangle-numbers.cpp -------------------------------------------------------------------------------- /43_Substring-divisibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/43_Substring-divisibility.cpp -------------------------------------------------------------------------------- /44_Pentagon-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/44_Pentagon-numbers.cpp -------------------------------------------------------------------------------- /45_Triangular-pentagonal-and-hexagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/45_Triangular-pentagonal-and-hexagonal.cpp -------------------------------------------------------------------------------- /46-Goldbach's-other-conjecture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/46-Goldbach's-other-conjecture.cpp -------------------------------------------------------------------------------- /47_Distinct-prime-factors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/47_Distinct-prime-factors.cpp -------------------------------------------------------------------------------- /49_Prime-permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/49_Prime-permutations.cpp -------------------------------------------------------------------------------- /51_Consecutive-prime-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/51_Consecutive-prime-sum.cpp -------------------------------------------------------------------------------- /51_Prime-digit-replacements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/51_Prime-digit-replacements.cpp -------------------------------------------------------------------------------- /52_Permuted-multiples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/52_Permuted-multiples.cpp -------------------------------------------------------------------------------- /53_Combinatoric-selections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/53_Combinatoric-selections.py -------------------------------------------------------------------------------- /53_Combinatoric-selections.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/53_Combinatoric-selections.py~ -------------------------------------------------------------------------------- /54_Poker-hands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/54_Poker-hands.cpp -------------------------------------------------------------------------------- /55_Lychrel-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/55_Lychrel-numbers.cpp -------------------------------------------------------------------------------- /56_Powerful-digit-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/56_Powerful-digit-sum.cpp -------------------------------------------------------------------------------- /57_Square-root-convergents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/57_Square-root-convergents.cpp -------------------------------------------------------------------------------- /58_Spiral-primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/58_Spiral-primes.cpp -------------------------------------------------------------------------------- /59_XOR-decryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/59_XOR-decryption.cpp -------------------------------------------------------------------------------- /60_Prime-pair-sets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/60_Prime-pair-sets.cpp -------------------------------------------------------------------------------- /61_Cyclical-figurate-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/61_Cyclical-figurate-numbers.cpp -------------------------------------------------------------------------------- /62_Cubic-permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/62_Cubic-permutations.cpp -------------------------------------------------------------------------------- /63_Powerful-digit-counts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/63_Powerful-digit-counts.cpp -------------------------------------------------------------------------------- /65_Convergents-of-e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/65_Convergents-of-e.py -------------------------------------------------------------------------------- /65_Convergents-of-e.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/65_Convergents-of-e.py~ -------------------------------------------------------------------------------- /65_Odd-period-square-roots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/65_Odd-period-square-roots.cpp -------------------------------------------------------------------------------- /66_Diophantine-equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/66_Diophantine-equation.py -------------------------------------------------------------------------------- /66_Diophantine-equation.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/66_Diophantine-equation.py~ -------------------------------------------------------------------------------- /67_Maximum-path-sum-II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/67_Maximum-path-sum-II.cpp -------------------------------------------------------------------------------- /68_Magic-N-gon-ring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/68_Magic-N-gon-ring.cpp -------------------------------------------------------------------------------- /69_Totient-maximum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/69_Totient-maximum.cpp -------------------------------------------------------------------------------- /70_Totient-permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/70_Totient-permutation.cpp -------------------------------------------------------------------------------- /70_Totient-permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/70_Totient-permutations.cpp -------------------------------------------------------------------------------- /72_Counting-fractions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/72_Counting-fractions.cpp -------------------------------------------------------------------------------- /74_Digit-factorial-chains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/74_Digit-factorial-chains.cpp -------------------------------------------------------------------------------- /75_Singular-integer-right-triangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/75_Singular-integer-right-triangles.cpp -------------------------------------------------------------------------------- /76_Counting-summations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/76_Counting-summations.cpp -------------------------------------------------------------------------------- /77_Prime-summations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/77_Prime-summations.cpp -------------------------------------------------------------------------------- /78_Coin-partitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/78_Coin-partitions.cpp -------------------------------------------------------------------------------- /79_Passcode-derivation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/79_Passcode-derivation.cpp -------------------------------------------------------------------------------- /80_Square-root-digital-expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/80_Square-root-digital-expansion.py -------------------------------------------------------------------------------- /81_Path-sum-two-ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/81_Path-sum-two-ways.cpp -------------------------------------------------------------------------------- /82_Path-sum-three-ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/82_Path-sum-three-ways.cpp -------------------------------------------------------------------------------- /83_Path-sum-four-ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/83_Path-sum-four-ways.cpp -------------------------------------------------------------------------------- /85_Counting-rectangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/85_Counting-rectangles.cpp -------------------------------------------------------------------------------- /87_Prime-power-triples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/87_Prime-power-triples.cpp -------------------------------------------------------------------------------- /88_Product-sum-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/88_Product-sum-numbers.cpp -------------------------------------------------------------------------------- /89_Roman-numerals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/89_Roman-numerals.cpp -------------------------------------------------------------------------------- /95_Amicable-chains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/95_Amicable-chains.cpp -------------------------------------------------------------------------------- /96_Su-Doku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/96_Su-Doku -------------------------------------------------------------------------------- /97_Large-non-Mersenne-prime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/97_Large-non-Mersenne-prime.cpp -------------------------------------------------------------------------------- /98_Anagramic-squares.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/98_Anagramic-squares.cpp -------------------------------------------------------------------------------- /99_Largest-exponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/99_Largest-exponential.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/comp0zr/Project-Euler-Solutions/HEAD/README.md --------------------------------------------------------------------------------