AI solves Advent of Code 2022
note89.github.io
AI solves Advent of Code 2022
1–10 of 82 posts
Re: AI solves Advent of Code 2022
#2Automated solutions exist too:
* https://twitter.com/ostwilkens/status/1598458146187628544
* https://www.reddit.com/r/adventofcode/comments/zb8tdv/2022_d...
Re: AI solves Advent of Code 2022
#3The linked solution is done by talking to the AI. Automated solutions exist too: * https://twitter.com/ostwilkens/status/1598458146187628544 * https://www.reddit.com/r/adventofcode/comments/zb8tdv/2022_d... * https://twitter.com/max_sixty/status/1598924237947154433
Given how similar ChatGPT and siblings are to how chess bots work these days, I am somehow not surprised.
Re: AI solves Advent of Code 2022
#4Re: AI solves Advent of Code 2022
#5Re: AI solves Advent of Code 2022
#6The linked solution is done by talking to the AI. Automated solutions exist too: * https://twitter.com/ostwilkens/status/1598458146187628544 * https://www.reddit.com/r/adventofcode/comments/zb8tdv/2022_d... * https://twitter.com/max_sixty/status/1598924237947154433
That's just unfair for the competition. Are we at a point in time when we need to treat competitive programming like chess? Given how similar ChatGPT and siblings are to how chess bots work these days, I am somehow not surprised.
It's not really any different to using high-level programming languages with extensive standard libraries versus doing everything in assembly language.
Re: AI solves Advent of Code 2022
#7Re: AI solves Advent of Code 2022
#8I'm doing AoC at the moment too and I'm using the chat GPT thing as a sort of assistant. I don't program in Rust much so sometimes it's difficult to remember certain things and functions. Expressing my intent to the tool seems to come up with decent answers
Some example questions I've asked the tool recently:
> I want to insert a char into a hash map if it does not exist, if it does increment a counter
> rust find common keys in two hashmaps keyed by char
Yes they can probably be found on stack overflow or whatever but it feels more natural this way.
...and yes I could just go down the route of getting the thing to solve the AoC challenge completely but that's no fun
Re: AI solves Advent of Code 2022
#9I think it must have seen the solution somewhere already on the web. I find it extremely hard to believe that such a general purpose chatbot would just be able to solve programming problems. Deepmind had a paper [1] on solving programming problems a couple of months ago and they had to apply quite specialized heuristics in order to solve these problems. Obviously ChatGPT does nothing of the sorts and it just seems ex…