Problem Description์ ์๊ฐ ๋ด๊ธด ๋ฐฐ์ด numbers์ ๋ฌธ์์ด direction๊ฐ ๋งค๊ฐ๋ณ์๋ก ์ฃผ์ด์ง๋๋ค. ๋ฐฐ์ด numbers์ ์์๋ฅผ direction ๋ฐฉํฅ์ผ๋ก ํ ์นธ์ฉ ํ์ ์ํจ ๋ฐฐ์ด์ returnํ๋๋ก solution ํจ์๋ฅผ ์์ฑํด์ฃผ์ธ์. Restrictions.3 ≤ numbers์ ๊ธธ์ด ≤ 20direction์ "left" ์ "right" ๋ ์ค ํ๋์ ๋๋ค. Input/Output Example์ ์ถ๋ ฅ ์ #1 numbers ๊ฐ [1, 2, 3]์ด๊ณ direction์ด "right" ์ด๋ฏ๋ก ์ค๋ฅธ์ชฝ์ผ๋ก ํ ์นธ์ฉ ํ์ ์ํจ [3, 1, 2]๋ฅผ returnํฉ๋๋ค.์ ์ถ๋ ฅ ์ #2 numbers ๊ฐ [4, 455, 6, 4, -1, 45, 6]์ด๊ณ direction์ด "left" ์ด๋ฏ๋ก ์ผ์ชฝ์ผ..