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군의 총점을 구하는 프..
using System; using System.Numerics; class Program { static void Main(string[] args) { string stringNumber = Console.ReadLine(); int number = int.Parse(stringNumber); for (int i = 0; i < number; i++) { string stringPassword = Console.ReadLine(); if (5 < stringPassword.Length && stringPassword.Length < 10) { Console.WriteLine("yes"); } else { Console.WriteLine("no"); } } } } 문제 출처 https://www.acm..