{"id":34996,"date":"2024-11-01T09:34:25","date_gmt":"2024-11-01T09:34:25","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=34996"},"modified":"2024-11-01T11:45:25","modified_gmt":"2024-11-01T11:45:25","slug":"kotlin-coding-test-course-string-search","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/34996\/","title":{"rendered":"kotlin coding test course, string search"},"content":{"rendered":"<p><body><\/p>\n<h2>Topic: String Searching<\/h2>\n<p>String-related problems are frequently presented in coding tests. In this course, we will address string searching problems and write algorithms and code to solve them.<\/p>\n<h3>Problem Description<\/h3>\n<p>Let&#8217;s solve the following problem:<\/p>\n<h4>Problem: Count the occurrences of a specific word in a given string<\/h4>\n<p>Given a string <code>s<\/code> and a word <code>word<\/code>, write a function that counts and returns the number of times the word appears in the string. Note that case is ignored, and the word is recognized only as a separate entity separated by spaces.<\/p>\n<h4>Input Example<\/h4>\n<pre>\ns = \"Kotlin is a programming language. kotlin is a functional programming language.\"\nword = \"kotlin\"\n<\/pre>\n<h4>Output Example<\/h4>\n<pre>\n2\n<\/pre>\n<h3>Problem Solving Process<\/h3>\n<p>This problem is a basic one dealing with strings, requiring simple string manipulation skills. The solution process is as follows:<\/p>\n<ol>\n<li><strong>String normalization:<\/strong> Convert the entire input string to lowercase to ignore case.<\/li>\n<li><strong>Word separation:<\/strong> Split the string based on spaces to create a list of words.<\/li>\n<li><strong>Word comparison:<\/strong> Count and return the number of words in the generated word list that match the given word.<\/li>\n<\/ol>\n<h3>Code Implementation<\/h3>\n<p>Now let&#8217;s implement the above algorithm in Kotlin:<\/p>\n<pre><code>fun countWordOccurrence(s: String, word: String): Int {\n    \/\/ 1. Convert the string to lowercase\n    val normalizedString = s.toLowerCase()\n    \/\/ 2. Separate the string based on spaces\n    val words = normalizedString.split(\" \")\n    \/\/ 3. Count of the same word\n    return words.count { it == word.toLowerCase() }\n}\n\n\/\/ Example usage\nfun main() {\n    val s = \"Kotlin is a programming language. kotlin is a functional programming language.\"\n    val word = \"kotlin\"\n    val occurrenceCount = countWordOccurrence(s, word)\n    println(occurrenceCount) \/\/ Output: 2\n}<\/code><\/pre>\n<h3>Code Explanation<\/h3>\n<p>The above code functions as follows:<\/p>\n<ul>\n<li><strong>Lowercase conversion:<\/strong> It uses the <code>s.toLowerCase()<\/code> method to convert the given string to lowercase.<\/li>\n<li><strong>Word separation:<\/strong> It uses the <code>split(\" \")<\/code> method to split the string based on spaces, generating a list of words.<\/li>\n<li><strong>Word count:<\/strong> It calculates and returns the number of occurrences of the specific word in the list using <code>count { it == word.toLowerCase() }<\/code>.<\/li>\n<\/ul>\n<h3>Test Cases<\/h3>\n<p>Now let&#8217;s write some test cases to verify that the code is functioning correctly.<\/p>\n<pre><code>fun runTests() {\n    val testCases = listOf(\n        Pair(\"Kotlin is a programming language. kotlin is a functional programming language.\", \"kotlin\") to 2,\n        Pair(\"This is a test string. The test is important.\", \"test\") to 2,\n        Pair(\"Kotlin and Java are different languages. JAVA is an object-oriented language.\", \"java\") to 2,\n        Pair(\"String searching problem\", \"none\") to 0\n    )\n\n    for ((input, expected) in testCases) {\n        val (s, word) = input\n        val result = countWordOccurrence(s, word)\n        println(\"Input: \\\"$s\\\", Word: \\\"$word\\\", Expected Result: $expected, Actual Result: $result\")\n    }\n}\n\n\/\/ Run tests\nrunTests()\n<\/code><\/pre>\n<h3>Conclusion<\/h3>\n<p>In this lesson, we learned how to handle strings simply in Kotlin through a string searching problem. String exploration and manipulation are fundamentals of problem-solving and are frequently encountered in real coding tests. Apply the above code in various scenarios and challenge yourself with other string-related problems!<\/p>\n<p>This has been the Kotlin coding test tutorial. Thank you!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Topic: String Searching String-related problems are frequently presented in coding tests. In this course, we will address string searching problems and write algorithms and code to solve them. Problem Description Let&#8217;s solve the following problem: Problem: Count the occurrences of a specific word in a given string Given a string s and a word word, &hellip; <a href=\"https:\/\/atmokpo.com\/w\/34996\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;kotlin coding test course, string search&#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-34996","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, string search - \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\/34996\/\" \/>\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, string search - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Topic: String Searching String-related problems are frequently presented in coding tests. In this course, we will address string searching problems and write algorithms and code to solve them. Problem Description Let&#8217;s solve the following problem: Problem: Count the occurrences of a specific word in a given string Given a string s and a word word, &hellip; \ub354 \ubcf4\uae30 &quot;kotlin coding test course, string search&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/34996\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:34:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:45:25+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\/34996\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34996\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"kotlin coding test course, string search\",\"datePublished\":\"2024-11-01T09:34:25+00:00\",\"dateModified\":\"2024-11-01T11:45:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34996\/\"},\"wordCount\":310,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Kotlin coding test\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/34996\/\",\"url\":\"https:\/\/atmokpo.com\/w\/34996\/\",\"name\":\"kotlin coding test course, string search - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:34:25+00:00\",\"dateModified\":\"2024-11-01T11:45:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34996\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/34996\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/34996\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"kotlin coding test course, string search\"}]},{\"@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, string search - \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\/34996\/","og_locale":"ko_KR","og_type":"article","og_title":"kotlin coding test course, string search - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Topic: String Searching String-related problems are frequently presented in coding tests. In this course, we will address string searching problems and write algorithms and code to solve them. Problem Description Let&#8217;s solve the following problem: Problem: Count the occurrences of a specific word in a given string Given a string s and a word word, &hellip; \ub354 \ubcf4\uae30 \"kotlin coding test course, string search\"","og_url":"https:\/\/atmokpo.com\/w\/34996\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:34:25+00:00","article_modified_time":"2024-11-01T11:45:25+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\/34996\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/34996\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"kotlin coding test course, string search","datePublished":"2024-11-01T09:34:25+00:00","dateModified":"2024-11-01T11:45:25+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/34996\/"},"wordCount":310,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Kotlin coding test"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/34996\/","url":"https:\/\/atmokpo.com\/w\/34996\/","name":"kotlin coding test course, string search - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:34:25+00:00","dateModified":"2024-11-01T11:45:25+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/34996\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/34996\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/34996\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"kotlin coding test course, string search"}]},{"@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\/34996","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=34996"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/34996\/revisions"}],"predecessor-version":[{"id":34997,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/34996\/revisions\/34997"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=34996"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=34996"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=34996"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}