19
SOLUTION MEGATHREAD-❄️- 2023 Day 22 Solutions -❄️-(self.adventofcode)
submitted 2 years, 1 month ago* (edited 29 minutes after) by daggerdragon to /r/adventofcode (134.8k)
THE USUAL REMINDERS
- All of our rules, FAQs, resources, etc. are in our [community wiki](https:...
since 2 years, 1 month ago
3 of 3
Tip Reveddit Real-Time can notify you when your content is removed.
your account history
Tip Check if your account has any removed comments.
view my removed comments you are viewing a single comment's thread.
view all comments


[LANGUAGE: Python]
Simple brute force works faster than I write code.
https://gist.github.com/masepi/6a9d8af9d9818675c75bd2a38c4c320e
PS. How can I force the indentation to be 4 space in gist.github.com ?
You are using tabs for indentation and tab is 8-space width on github. So only reliable way to force it to 4 space is to use spaces instead of tabs.
If you're linking directly to your code on an external repository, you don't need the four-spaces syntax because that is Markdown for formatting code blocks on Reddit.
If you want to read more, we have articles in our community wiki: How do I format code? as an overview to Markdown for code on Reddit and specifically the four-spaces Markdown syntax which we require.