Special Sort

Problem If N integers are entered, you must sort the entered values. Negative integers must be on the front and positive integers on the back. Also, the order of positive and negative integers should not change. input Integer N (5<=N<=100) is given to the first line, and integers including negative…

Read More

Are You Still Use "+=" To Add Query Dynamically? Use URLSearchParams()!

Introduction We usually added query dynamically by using . However, it is not easily manageable when it comes to long query string. In this case, there is for easily manage the query dynamically. using It’s simple but you have to careful about or , matching. Becuase It is just string and you can…

Read More

Bubble Sort

Problem Write a program that sorts in ascending order when N numbers are input and outputs them. The sorting method is bubble sort. input The first line is given a natural number N (1<=N<=100) In the second line, N natural numbers are entered with a space between them. Each natural number is in the…

Read More

Selection Sort

Problem Write a program that sorts in ascending order when N numbers are input and outputs them. The sorting method is selection sort. input The first line is given a natural number N (1<=N<=100) In the second line, N natural numbers are entered with a space between them. Each natural number is in…

Read More

Curriculum Design

Problem Hyeonsu must plan a one-year course. There are compulsory subjects in class. These compulsory courses must be completed, and the order is set. If there are total subjects A, B, C, D, E, F, G, and the compulsory subjects are given as CBA, the compulsory subjects are C, B, and A subjects, and…

Read More
Page 6 Of 26