a) Can you publish daily solutions to yesterday's problems? I'd really like to see the solution to #8-Hard (1,6,7,7,50,100 Target: 875)
b) Can you add links to archived previous problems?
81–82 of 82 posts
a) Can you publish daily solutions to yesterday's problems? I'd really like to see the solution to #8-Hard (1,6,7,7,50,100 Target: 875)
b) Can you add links to archived previous problems?
> I made this game for my children to play Mathematician here. It's fun, but it's quite hard! How old are your children? [spoiler alert?] I finally solved it in 4 steps. It needs a lot of backtracking planning. I has to guess which will be the last expression and try to reach the numbers that it used. I don't play too much Wordle, but my approach was just trying to find a word that is not to stupid (like reusing a lo…
> It needs a lot of backtracking planning. I has to guess which will be the last expression and try to reach the numbers that it used. I ended up creating a mental factorization table of the target number with only the available numbers as factors. That pretty "quickly" lead to a solution in only three steps. I put the "quickly" in scare quotes because I essentially brute forced the problem.