C# 암호 해독 - 프로그래머스 [Lv.0] 코딩 테스트 입문
출처: 프로그래머스 코딩 테스트 연습 https://school.programmers.co.kr/learn/courses/30/lessons/120892 나의 풀이 using System; using System.Linq; using System.Text; public class Solution { public string solution(string cipher, int code) { int length = cipher.Length / code; var enumuerables = Enumerable.Range(0, length) .Select(n => cipher[(n + 1) * code - 1]); StringBuilder sb = new StringBuilder(); foreach (var ite..