Backwards Rock Paper Scissors | Advent of Code 2

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

25 Days of Second Thread daily uploads that's Awesome, Thank you.

OmarMoBadr
Автор

These aoc videos are my favorit. Another underrated programming channel!

khoda
Автор

Hey second thread lovely video, I know you are a busy guy but if you get time somewhere near Christmas then can please make a video in which your generally talking about things like your practice strategy, topics you are strong and weak at, about your journey from pupil to International grandmaster, how you learn complex algorithm and techniques like heavy light decomposition, square root decomposition etc. And how do you up solve to make sure when next time you come across to similar type of problem you will able to solve it completely and at the end "how is your life going and what is your next step/phase in life?"😇

utkarshsharma
Автор

Lol I just hard coded my ifs, funny to see the Reddit memes about the people not using modulo xD

juanmacias
Автор

I liked the way you solved the problem
I thought that the best way to solve the Rock Paper Scissors logic without ifs was with a hash table
{'X' : {"A" : 0, "B" : -1, "C" : 1},
'Y' : {"B" : 0, "C" : -1, "A" : 1},
'Z' : {"C" : 0, "A" : -1, "B" : 1}}

Thanks for making these videos!

naimgomez
Автор

hey, cool video. I think you accidentally put the link to the 3rd days problem instead of the 2nd days

ananthramvijayaraj
Автор

Hello Mr. SecondThread
I have a question for you, I'm on the first road of competitive programming and I want to learn a programming language (just not for CF) do you prefer java or CPP?
thanks

alonePointer