일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 대구카페
- 프로그래머스
- 정렬
- 앞산카페
- 수성구맛집
- 대구삼겹살
- 수성못삼겹살
- 조건문
- 별찍기
- oracle
- 큐
- 수성못맛집
- 브루트 포스
- 대구데이트
- 범어동맛집
- C#
- 들안길삼겹살
- 대명동맛집
- 반복문
- 압구정데이트
- 오라클
- BFS
- 대구맛집
- SQL
- 백준
- 서울맛집
- 안지랑카페
- 수성구데이트
- 대구고깃집
- programmers
- Today
- Total
목록일상 집합소 (212)
모든 일상

public class Solution { public bool solution(int x) { bool answer; string arr = x.ToString(); int[] num = new int[arr.Length]; int result = 0; int add = 0; for (int i = 0; i

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