로직 확인 중

This commit is contained in:
backuppc
2026-03-09 17:24:21 +09:00
parent 49c40fd371
commit 18ee01f7bc
4 changed files with 187 additions and 196 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
class Program {
static void Main() {
var paths = new List<string[]> { new[] { \"20F\", \"21F\", \"70B\" } };
var valid = paths.Select(p => p.Select(t => new { Tag = t, IdStr = new string(t.Where(char.IsDigit).ToArray()) }).ToList()).ToList();
Console.WriteLine(\"Compiled\");
}
}