일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- 큐
- 정렬
- 별찍기
- 백준
- 안지랑카페
- C#
- 대명동맛집
- SQL
- 반복문
- 대구삼겹살
- 압구정데이트
- 대구카페
- 수성구데이트
- 브루트 포스
- 수성못맛집
- 대구고깃집
- 범어동맛집
- 들안길삼겹살
- 조건문
- 수성구맛집
- 대구맛집
- oracle
- 수성못삼겹살
- BFS
- 앞산카페
- programmers
- 오라클
- 서울맛집
- 프로그래머스
- 대구데이트
- Today
- Total
목록코딩 공부/C# (100)
모든 일상

public class Solution { public string solution(string phone_number) { string answer = ""; string last_num = phone_number.Substring(phone_number.Length-4, 4); for(int i =0; i 123 : 0번 인덱스부터 3-1번 인덱스까지 abc.Substring(3) -> 456789 : 3번 인덱스부터 끝까지

public class Solution { public int[,] solution(int[,] arr1, int[,] arr2) { int len = arr1.GetLength(0); int len2 = arr1.GetLength(1); int[,] answer = new int[len,len2]; for(int i = 0 ; i

public class Solution { public long[] solution(int x, int n) { long[] answer = new long[n]; for(int i = 0; i

using System; public class Example { public static void Main() { String[] s; Console.Clear(); s = Console.ReadLine().Split(' '); int a = Int32.Parse(s[0]); int b = Int32.Parse(s[1]); for(int i = 0 ; i

using System; using System.Collections.Generic; using System.Text; namespace ConsoleApp7 { class Program { static void Main(string[] args) { List result = new List(); while (true) { string[] number = Console.ReadLine().Split(); if (int.Parse(number[0]) == 0 & int.Parse(number[1]) == 0) { break; } int num1 = int.Parse(number[0]); int num2 = int.Parse(number[1]); int add = num1 + num2; result.Add(..

using System; using System.Text; namespace ConsoleApp7 { class Program { static void Main(string[] args) { string[] number = Console.ReadLine().Split(); int count = int.Parse(number[0]); int max = int.Parse(number[1]); string[] arr = Console.ReadLine().Split(); StringBuilder result = new StringBuilder(); for(int i = 0; i

using System; using System.Text; namespace ConsoleApp7 { class Program { static void Main(string[] args) { int count = int.Parse(Console.ReadLine()); for(int i = 0; i