I’m working through the Advent of Code problems. One of them involves keeping track of directional moves, given as strings (“N”, “S”, “E”, “W”) and integer values. I’ve set up variables N, S, E, and W to track movement. Passing on whether this is a sensible way to solve this part of the problem, I’d like to be able to use the string values to access the same-named variables. For example, if I have (“N”, 30) as input, I can add 30 to the value of N without having to write out if x == "N" N += 30
for every directional string letter.
I’ve tried using a Dictionary and Symbols, but I suspect this involves a metaprogramming/macro solution. I researched how to to accomplish this online, and read the Julia “metaprogramming” docs, but the solution isn’t coming to me. Any help would be appreciated. I know this is something that Julia ought to be able to do.
Thank you!