Recently I was bothered with the function that would return starting day of the week for a given string concatenation of year and week and surprisingly couldn't find it anywhere.
I saw similar ones (ie. question1, question2), but I am only given the year and week, without days.
Let's have an example input and a desired output:
func('202005') -> Monday 27.01.2020
I found a lot of counting, but not anything elegant, a smooth one-liner. Is there any?