{"id":35076,"date":"2024-11-01T09:35:17","date_gmt":"2024-11-01T09:35:17","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35076"},"modified":"2024-11-01T12:46:28","modified_gmt":"2024-11-01T12:46:28","slug":"%ec%bd%94%ed%8b%80%eb%a6%b0-coding-test-course-finding-the-sum-of-consecutive-numbers","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35076\/","title":{"rendered":"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers"},"content":{"rendered":"<p><body><\/p>\n<div class=\"container\">\n<h2>Problem Description<\/h2>\n<p>\n            Given an integer array <code>arr<\/code>, this is a problem of finding the maximum sum of a contiguous subarray.<br \/>\n            In other words, you need to determine what the largest sum is when adding up a few consecutive numbers from <code>arr<\/code>.<br \/>\n            This problem is one of the frequently asked coding test questions and can be solved using Kadane&#8217;s algorithm.\n        <\/p>\n<h2>Problem Example<\/h2>\n<h3>Input<\/h3>\n<pre><code>[2, -1, 3, 4, -2, 1, -5, 4]<\/code><\/pre>\n<h3>Output<\/h3>\n<pre><code>10<\/code><\/pre>\n<p>Explanation: The sum of the contiguous subarray [3, 4, -2, 1] is the maximum at 10.<\/p>\n<h2>Approach to the Problem<\/h2>\n<p>\n            Since this problem requires finding the sum of a contiguous subarray, the key is how to set the range.<br \/>\n            That is, while you can approach this by fixing starting and ending points and summing all elements in between,<br \/>\n            this method is inefficient. Instead, you can solve it in O(n) time complexity using Kadane&#8217;s algorithm.\n        <\/p>\n<h3>Kadane&#8217;s Algorithm<\/h3>\n<p>\n            Kadane&#8217;s algorithm works by updating the maximum sum of the contiguous subarray so far by comparing it to the current position&#8217;s value.<br \/>\n            The specific steps are as follows:\n        <\/p>\n<ol>\n<li>Initialize the variables <code>maxSoFar<\/code> and <code>maxEndingHere<\/code>. Both can be initialized to 0 or the first element of the array.<\/li>\n<li>Traverse the array and add the current value <code>arr[i]<\/code> to <code>maxEndingHere<\/code>.<\/li>\n<li>If <code>maxEndingHere<\/code> is greater than <code>maxSoFar<\/code>, update <code>maxSoFar<\/code>.<\/li>\n<li>If <code>maxEndingHere<\/code> becomes less than 0, reset it to 0 to start a new contiguous sum.<\/li>\n<\/ol>\n<p>\n            This method can find the maximum sum in O(n) time, regardless of the array size.\n        <\/p>\n<h2>Kotlin Code Implementation<\/h2>\n<p>\n            Below is the code that implements the above algorithm in Kotlin:\n        <\/p>\n<pre><code>\nfun maxSubArraySum(arr: IntArray): Int {\n    var maxSoFar = arr[0]\n    var maxEndingHere = arr[0]\n\n    for (i in 1 until arr.size) {\n        maxEndingHere = Math.max(arr[i], maxEndingHere + arr[i])\n        maxSoFar = Math.max(maxSoFar, maxEndingHere)\n    }\n\n    return maxSoFar\n}\n\nfun main() {\n    val arr = intArrayOf(2, -1, 3, 4, -2, 1, -5, 4)\n    val result = maxSubArraySum(arr)\n    println(\"Maximum contiguous sum: $result\")\n}\n        <\/code><\/pre>\n<p>The above code defines a function <code>maxSubArraySum<\/code> that calculates the maximum contiguous sum from a given integer array.<\/p>\n<h2>Time Complexity Analysis<\/h2>\n<p>\n            Since Kadane&#8217;s algorithm derives results through a single traversal of the array, its time complexity is O(n).<br \/>\n            Therefore, increasing the size of the array does not significantly affect performance. The space complexity is O(1) and is very efficient as it does not use any additional data structures.\n        <\/p>\n<h2>Conclusion<\/h2>\n<p>\n            The problem of finding contiguous sums is a frequently encountered issue in algorithm problem solving,<br \/>\n            and can be efficiently solved through Kadane&#8217;s algorithm. This allows you to learn the basics of Kotlin syntax and algorithm design at the same time.<br \/>\n            Since this is a problem that often appears in coding tests, practice it to be able to implement it naturally.\n        <\/p>\n<h2>Additional Practice Problems<\/h2>\n<p>Try additional practice with the following modified problems:<\/p>\n<ul>\n<li>Write a program that outputs both the starting and ending indices of the contiguous subarray from the given array.<\/li>\n<li>Find the maximum contiguous sum when given an array with all negative elements.<\/li>\n<li>Create a program that receives multiple test cases and outputs the maximum contiguous sum for each.<\/li>\n<\/ul>\n<h2>References<\/h2>\n<ul>\n<li><a href=\"https:\/\/en.wikipedia.org\/wiki\/Maximum_subarray_problem\">Maximum Subarray Problem &#8211; Wikipedia<\/a><\/li>\n<li><a href=\"https:\/\/www.geeksforgeeks.org\/largest-sum-contiguous-subarray\/\">Largest Sum Contiguous Subarray &#8211; GeeksforGeeks<\/a><\/li>\n<li><a href=\"https:\/\/www.programiz.com\/kotlin-programming\/arrays\">Kotlin Arrays &#8211; Programiz<\/a><\/li>\n<\/ul>\n<\/div>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Problem Description Given an integer array arr, this is a problem of finding the maximum sum of a contiguous subarray. In other words, you need to determine what the largest sum is when adding up a few consecutive numbers from arr. This problem is one of the frequently asked coding test questions and can be &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35076\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers&#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-35076","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, Finding the Sum of Consecutive Numbers - \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\/35076\/\" \/>\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, Finding the Sum of Consecutive Numbers - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Problem Description Given an integer array arr, this is a problem of finding the maximum sum of a contiguous subarray. In other words, you need to determine what the largest sum is when adding up a few consecutive numbers from arr. This problem is one of the frequently asked coding test questions and can be &hellip; \ub354 \ubcf4\uae30 &quot;Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35076\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:35:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T12:46:28+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=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/35076\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35076\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers\",\"datePublished\":\"2024-11-01T09:35:17+00:00\",\"dateModified\":\"2024-11-01T12:46:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35076\/\"},\"wordCount\":456,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Kotlin coding test\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35076\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35076\/\",\"name\":\"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:35:17+00:00\",\"dateModified\":\"2024-11-01T12:46:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35076\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35076\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35076\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers\"}]},{\"@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, Finding the Sum of Consecutive Numbers - \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\/35076\/","og_locale":"ko_KR","og_type":"article","og_title":"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Problem Description Given an integer array arr, this is a problem of finding the maximum sum of a contiguous subarray. In other words, you need to determine what the largest sum is when adding up a few consecutive numbers from arr. This problem is one of the frequently asked coding test questions and can be &hellip; \ub354 \ubcf4\uae30 \"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers\"","og_url":"https:\/\/atmokpo.com\/w\/35076\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:35:17+00:00","article_modified_time":"2024-11-01T12:46:28+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":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/35076\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35076\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers","datePublished":"2024-11-01T09:35:17+00:00","dateModified":"2024-11-01T12:46:28+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35076\/"},"wordCount":456,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Kotlin coding test"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35076\/","url":"https:\/\/atmokpo.com\/w\/35076\/","name":"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:35:17+00:00","dateModified":"2024-11-01T12:46:28+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35076\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35076\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35076\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Kotlin Coding Test Course, Finding the Sum of Consecutive Numbers"}]},{"@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\/35076","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=35076"}],"version-history":[{"count":2,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35076\/revisions"}],"predecessor-version":[{"id":38091,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35076\/revisions\/38091"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35076"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35076"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35076"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}