요즘은 바빠서 개발만 하다 보니까, 점점 바보가 되어가는거 같다.그래서 코딩 테스트와 영어 공부를 해볼 계획이다. 1. 아침에 일어나서 씻고 바로 코딩 테스트 문제 하나 풀어본다.https://www.acmicpc.net/ 2. 그리고 영어 공부를 할텐데 책은 아직 안 정했다.아마 토익 책으로 할듯하다.3. 프로젝트 개발하면서 새롭게 알게 된 것들 블로그에 정리한다.정리를 더 해서 유튜브 영상 업로드한다.
Certainly! When it comes to assessing developers’ coding skills during the hiring process, several popular platforms stand out. Here are some of the best coding test platforms that recruiters and hiring managers often use:Codility: An online platform that offers coding assessments and evaluations. It helps assess developers’ coding skills and technical abilities1.LeetCode: Widely used for techni..
using System; class Program { static void Main(string[] args) { List listA = new List(); List listB = new List(); while (true) { string stringInput = Console.ReadLine(); string[] stringInputArray = stringInput.Split(' ', StringSplitOptions.None); int A = Convert.ToInt32(stringInputArray[0]); int B = Convert.ToInt32(stringInputArray[1]); if (A == 0 && B == 0) { break; } listA.Add(A); listB.Add(B)..
using System; class Program { static void Main(string[] args) { string stringN = Console.ReadLine(); string[] stringArray = stringN.Split(' ', StringSplitOptions.None); int Y = Convert.ToInt32(stringArray[0]); int X = Convert.ToInt32(stringArray[1]); int[,] matrixA = new int[Y,X]; for (int i = 0; i < Y; i++) { string s = Console.ReadLine(); string[] sArray = s.Split(' ', StringSplitOptions.None)..
using System; class Program { static void Main(string[] args) { string stringN = Console.ReadLine(); int intN = Convert.ToInt32(stringN); int factorial = 1; for (int i = 1; i
using System; class Program { static void Main(string[] args) { int total = 0; for (int i = 0; i < 5; i++) { string stringN = Console.ReadLine(); int intN = Convert.ToInt32(stringN); total += intN; } Console.WriteLine(total); } } 문제 출처 https://www.acmicpc.net/problem/5522 5522번: 카드 게임 JOI군은 카드 게임을 하고 있다. 이 카드 게임은 5회의 게임으로 진행되며, 그 총점으로 승부를 하는 게임이다. JOI군의 각 게임의 득점을 나타내는 정수가 주어졌을 때, JOI군의 총점을 구하는 프..