Einträge über Python
Project Euler Solution 85: Counting Rectangles
In Problem 85: Counting Rectangles we are asked to compute the number of rectangles on a grid.
Project Euler Solution 84: Monopoly Odds
In Problem 84: Monopoly Odds we are asked to compute the odds for the fields of a Monopoly board.
Project Euler Solution 83: Path sum: four ways
Project Euler Problem 83: Path sum: four ways moves Problem 81 and 82 to the next level, now we can go into all directions.
Project Euler Solution 82: Path sum: three ways
In Problem 82: Path sum: three ways we have the same basic task as in the previous problem, we just have to deal with movements in three directions now.
Project Euler Solution 81: Path sum: two ways
In Problem 81: Path sum: two ways we have to find a special path through a 2D lattice.
A Useless and Harmful Abstraction
In a codebase that I have looked into I've seen an abstraction which is so broad that it is useless and also harmful. I'll show what it is, point to the problem and give some ideas to improve it.
Project Euler Solution 80: Square Root Digital Expansion
In Project Euler Problem 80: Square Root Digital Expansion we have to compute many digits in a square root.
Project Euler Solution 79: Passcode derivation
Project Euler Problem 79: Passcode derivation give us three digit samples from a secret passcode.
Project Euler Solution 78: Coin partitions
Project Euler Problem 78: Coin partitions throws us back to partitions of integers, but now with a more demanding task.