{"id":35048,"date":"2024-11-01T09:35:00","date_gmt":"2024-11-01T09:35:00","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35048"},"modified":"2024-11-01T12:49:07","modified_gmt":"2024-11-01T12:49:07","slug":"%ec%bd%94%ed%8b%80%eb%a6%b0-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c-%ec%a0%95%eb%a0%ac%ed%95%98%ea%b8%b0-1","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35048\/","title":{"rendered":"Kotlin coding test course, sorting 1"},"content":{"rendered":"<p><body><\/p>\n<h2>Problem Description<\/h2>\n<p>In this lecture, we will discuss a simple sorting algorithm problem called &#8220;Sorting Numbers 1.&#8221; The task is to sort the given numbers in ascending order. The requirements of the problem are as follows:<\/p>\n<blockquote>\n<p><strong>Problem:<\/strong> An integer N is given. Write a program that sorts these numbers in ascending order and outputs one number per line.<\/p>\n<\/blockquote>\n<h2>Input Format<\/h2>\n<ul>\n<li>The first line contains the integer N (1 \u2264 N \u2264 100,000)<\/li>\n<li>From the second line, N integers are given. (The range of the numbers is -1,000,000,000 \u2264 integer \u2264 1,000,000,000)<\/li>\n<\/ul>\n<h2>Output Format<\/h2>\n<p>Output the sorted numbers in ascending order, one per line.<\/p>\n<h2>Example Input<\/h2>\n<pre>\n    5\n    5\n    4\n    3\n    2\n    1\n    <\/pre>\n<h2>Example Output<\/h2>\n<pre>\n    1\n    2\n    3\n    4\n    5\n    <\/pre>\n<h2>Process of Solving the Problem<\/h2>\n<p>To solve this problem, we need to use a sorting algorithm. Kotlin provides built-in sorting methods, making it easy to solve the problem. Below is the process of solving the problem.<\/p>\n<h3>1. Receiving Input<\/h3>\n<p>First, we need to receive input. We will read the integer N and the array of integers through standard input. In Kotlin, we can use the <code>readLine()<\/code> method to get input.<\/p>\n<h3>2. Creating the Number Array<\/h3>\n<p>We need to convert the input numbers into an integer array and store them. To do this, we use the <code>split()<\/code> method along with the <code>map()<\/code> method.<\/p>\n<h3>3. Sorting<\/h3>\n<p>To sort the organized number array in ascending order, we can use Kotlin&#8217;s <code>sort()<\/code> method. This is very efficient and intuitive.<\/p>\n<h3>4. Outputting the Results<\/h3>\n<p>To output the sorted array one by one, we can iterate through the array and print the values.<\/p>\n<h2>Code Implementation<\/h2>\n<p>Now let&#8217;s implement all these processes into a single Kotlin program. Below is the code that solves the problem.<\/p>\n<pre><code>fun main() {\n        \/\/ 1. Receiving Input\n        val n = readLine()!!.toInt()\n        val numbers = IntArray(n)\n\n        \/\/ 2. Creating the Number Array\n        for (i in 0 until n) {\n            numbers[i] = readLine()!!.toInt()\n        }\n\n        \/\/ 3. Sorting\n        numbers.sort()\n\n        \/\/ 4. Outputting the Results\n        for (number in numbers) {\n            println(number)\n        }\n    }<\/code><\/pre>\n<h2>Code Explanation<\/h2>\n<p>The above code executes each step in order. First, it uses <code>readLine()!!.toInt()<\/code> to read the integer N from the first line, and then saves N integers into an array using a loop. After that, it calls <code>numbers.sort()<\/code> to sort the array, and finally prints the sorted results.<\/p>\n<h3>Efficiency<\/h3>\n<p>The time complexity of this algorithm is O(N log N). This is a characteristic performance of sorting algorithms, and it works well even for large datasets. Given that N can go up to 100,000 within the specified range, it is a sufficiently efficient solution.<\/p>\n<h2>Conclusion<\/h2>\n<p>In this lecture, we covered the basics of algorithm problem-solving using Kotlin through a simple number sorting problem. It is important to build foundational problem-solving skills before tackling more complex problems. Gaining experience by solving various problems is the best way to improve.<\/p>\n<p>Thank you, and I hope this helps you prepare for your coding tests!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Problem Description In this lecture, we will discuss a simple sorting algorithm problem called &#8220;Sorting Numbers 1.&#8221; The task is to sort the given numbers in ascending order. The requirements of the problem are as follows: Problem: An integer N is given. Write a program that sorts these numbers in ascending order and outputs one &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35048\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Kotlin coding test course, sorting 1&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[106],"tags":[],"class_list":["post-35048","post","type-post","status-publish","format-standard","hentry","category----en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Kotlin coding test course, sorting 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/35048\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kotlin coding test course, sorting 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Problem Description In this lecture, we will discuss a simple sorting algorithm problem called &#8220;Sorting Numbers 1.&#8221; The task is to sort the given numbers in ascending order. The requirements of the problem are as follows: Problem: An integer N is given. Write a program that sorts these numbers in ascending order and outputs one &hellip; \ub354 \ubcf4\uae30 &quot;Kotlin coding test course, sorting 1&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35048\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:35:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T12:49:07+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/35048\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35048\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Kotlin coding test course, sorting 1\",\"datePublished\":\"2024-11-01T09:35:00+00:00\",\"dateModified\":\"2024-11-01T12:49:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35048\/\"},\"wordCount\":415,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Kotlin coding test\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35048\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35048\/\",\"name\":\"Kotlin coding test course, sorting 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:35:00+00:00\",\"dateModified\":\"2024-11-01T12:49:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35048\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35048\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35048\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kotlin coding test course, sorting 1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Kotlin coding test course, sorting 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/35048\/","og_locale":"ko_KR","og_type":"article","og_title":"Kotlin coding test course, sorting 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Problem Description In this lecture, we will discuss a simple sorting algorithm problem called &#8220;Sorting Numbers 1.&#8221; The task is to sort the given numbers in ascending order. The requirements of the problem are as follows: Problem: An integer N is given. Write a program that sorts these numbers in ascending order and outputs one &hellip; \ub354 \ubcf4\uae30 \"Kotlin coding test course, sorting 1\"","og_url":"https:\/\/atmokpo.com\/w\/35048\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:35:00+00:00","article_modified_time":"2024-11-01T12:49:07+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/35048\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35048\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Kotlin coding test course, sorting 1","datePublished":"2024-11-01T09:35:00+00:00","dateModified":"2024-11-01T12:49:07+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35048\/"},"wordCount":415,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Kotlin coding test"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35048\/","url":"https:\/\/atmokpo.com\/w\/35048\/","name":"Kotlin coding test course, sorting 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:35:00+00:00","dateModified":"2024-11-01T12:49:07+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35048\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35048\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35048\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Kotlin coding test course, sorting 1"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35048","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=35048"}],"version-history":[{"count":2,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35048\/revisions"}],"predecessor-version":[{"id":38099,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35048\/revisions\/38099"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35048"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35048"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35048"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}