링크 : https://www.hackerrank.com/challenges/insertionsort2/problem 문제> 삽입정렬 과정을 출력하라. 해결방법. 1번 배열부터 마지막 배열까지. 하위배열과 값을 비교해 작으면 값을 스왑해간다. 스왑하고 기준을 바뀐 배열번지로 바꿔서 계속 하위배열과 비교. using System; using System.Collections.Generic; using System.IO; using System.Linq; class Solution { static void insertionSort2(int n, int[] arr) { // Complete this function for(int i = 1; i < n; i++) { int index = i; for(int j..
링크 : https://www.hackerrank.com/challenges/30-nested-logic/problem 문제> 책반납 연체료 계산. 해가 바뀌었을 경우 고정 -> 10000. 같은 해, 달 단위 지연 -> 지연 달 수 * 500. 같은 해, 같은 달, 일 단위 지연 -> 지연 일 수 * 15. 지연되지 않았을 시 0. 입력값>> 첫번째라인 : 반납일 두번째 라인 : 마감일 해결방법1. 기본값 0으로 넣어두고 DateTime로 받아 반납일과 마감일을 비교. 반납일이 클 경우 년, 월 단위로 비교. using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] a..
링크 : https://www.hackerrank.com/challenges/closest-numbers/problem 문제> 가장 작은 차를 가진 순서쌍들을 구하라.(동일 차) 해결방법. 정렬해서 좌우 차를 구해 작으면 출력값에 추가. 더 작은 값이 나오면 출력값을 지워주고 새로 출력값에 추가. 차가 같은 값도 출력값에 추가. using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] args) { int n = Convert.ToInt32(Console.ReadLine()); int[] num = Array.ConvertAll(Console.ReadLine().Spli..
링크 : https://www.hackerrank.com/challenges/tutorial-intro/problem 문제> 입력값이 몇번째 인덱스인지 찾아라. 해결방법. Array.FindIndex사용. using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] args) { int findNum = Convert.ToInt32(Console.ReadLine()); Convert.ToInt32(Console.ReadLine()); int[] num = Array.ConvertAll(Console.ReadLine().Split(' '), Int32.Parse); int o..
링크 : https://www.hackerrank.com/challenges/alternating-characters/problem 문제> 연속되는 문자 수(기준제외)를 구하라. 해결방법. 기준이 되는 문자와 다음 문자가 같다면 카운팅 증가. 달라지면 기준값 변경. 종료까지 반복. using System; using System.Collections.Generic; using System.IO; using System.Linq; class Solution { static int alternatingCharacters(string s){ List S = new List(s); int output = 0; char check = ' '; for(int i = 0; i < S.Count; i++) { if(c..