After a long time…
After a very long time, my weight dropped to 79 kg. I'm very happy :)
A curious software developer.
Move well! Learn well! Play well! Eat well! Rest well! Enjoy your lives, merrily and to the fullest!
After a very long time, my weight dropped to 79 kg. I'm very happy :)
Question: A palindromic number is read the same either way. The largest palindromic number obtained by multiplying two two-digit numbers is 9009 = 91 × 99. Find the largest palindromic number obtained by multiplying two three-digit numbers. * https://projecteuler.net/problem=4 Php;
Question: The prime factors of the number 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143? * https://projecteuler.net/problem=3 Php; number = $this->original_number […]
Question: Each new term in the Fibonacci sequence is obtained by summing the previous two terms. Starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, … Considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms. * https://projecteuler.net/problem=2 Php;
Question: When we list all natural numbers less than 10 that are multiples of 3 or 5, we find 3, 5, 6, and 9. The sum of these multiples is 23. Find the sum of all multiples of 3 or 5 that are less than 1000. * https://projecteuler.net/problem=1 Php;
Ever since I was a kid, I've always been curious about making games, and I wanted to create my own one day. After spending so much time in the software industry, I asked myself why I shouldn't do it anymore. This way, I'll both improve my Javascript skills and gain a perspective on the software development process in a way I've never seen before. Before I even started coding the game, I started thinking about what the snake's movement algorithm would be like. […]