{"id":27932,"date":"2024-10-27T15:20:26","date_gmt":"2024-10-27T15:20:26","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=27932"},"modified":"2024-11-26T07:13:31","modified_gmt":"2024-11-26T07:13:31","slug":"%ec%9e%90%eb%b0%94%ec%8a%a4%ed%81%ac%eb%a6%bd%ed%8a%b8-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c-%ed%8f%89%ea%b7%a0-%ea%b5%ac%ed%95%98%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/27932\/","title":{"rendered":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30"},"content":{"rendered":"<p><body><\/p>\n<h2>\ubb38\uc81c \uc124\uba85<\/h2>\n<p>\n        \uc8fc\uc5b4\uc9c4 \uc22b\uc790\ub4e4\uc758 \ubc30\uc5f4\uc774 \uc788\uc744 \ub54c, \uc774 \uc22b\uc790\ub4e4\uc758 \ud3c9\uade0\uc744 \uacc4\uc0b0\ud558\ub294 \ud568\uc218\ub97c \uc791\uc131\ud558\uc138\uc694.<br \/>\n        \ud3c9\uade0\uc740 \ubaa8\ub4e0 \uc22b\uc790\uc758 \ud569\uc744 \uc22b\uc790\uc758 \uac1c\uc218\ub85c \ub098\ub208 \uac12\uc785\ub2c8\ub2e4.<br \/>\n        \ubc30\uc5f4\uc774 \ube44\uc5b4\uc788\uc744 \uacbd\uc6b0\uc5d0\ub294 \uc608\uc678 \ucc98\ub9ac\ub97c \ud558\uc5ec \uc801\uc808\ud55c \uba54\uc2dc\uc9c0\ub97c \ubc18\ud658\ud574\uc57c \ud569\ub2c8\ub2e4.\n    <\/p>\n<h2>\ubb38\uc81c \uc608\uc2dc<\/h2>\n<pre>\n        \uc785\ub825: [1, 2, 3, 4, 5]\n        \ucd9c\ub825: 3\n\n        \uc785\ub825: []\n        \ucd9c\ub825: \"\ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.\"\n    <\/pre>\n<h2>\uc54c\uace0\ub9ac\uc998 \uc811\uadfc \ubc29\ubc95<\/h2>\n<p>\n        \uc774 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\uae30 \uc704\ud574, \ub2e4\uc74c\uacfc \uac19\uc740 \ub2e8\uacc4\ub97c \uac70\uce69\ub2c8\ub2e4:\n    <\/p>\n<ol>\n<li>\uc785\ub825 \ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\ub294\uc9c0\ub97c \ud655\uc778\ud569\ub2c8\ub2e4.<\/li>\n<li>\ubc30\uc5f4\uc758 \uac01 \uc694\uc18c\ub97c \uc21c\ud68c\ud558\uba70 \ud569\uacc4\ub97c \uacc4\uc0b0\ud569\ub2c8\ub2e4.<\/li>\n<li>\ubc30\uc5f4\uc758 \uae38\uc774\ub97c \uad6c\ud558\uc5ec, \ud3c9\uade0\uc744 \uacc4\uc0b0\ud569\ub2c8\ub2e4.<\/li>\n<li>\ucd5c\uc885\uc801\uc73c\ub85c \uad6c\ud55c \ud3c9\uade0 \uac12\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4.<\/li>\n<\/ol>\n<h2>\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub4dc \uad6c\ud604<\/h2>\n<p>\n        \uc774\uc81c \uac01 \ub2e8\uacc4\ub97c \uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8\ub85c \uad6c\ud604\ud574\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<pre><code>\nfunction calculateAverage(numbers) {\n    \/\/ \uc785\ub825 \ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\ub294\uc9c0 \ud655\uc778\n    if (numbers.length === 0) {\n        return \"\ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.\";\n    }\n    \n    \/\/ \ud569\uacc4\ub97c \uc800\uc7a5\ud560 \ubcc0\uc218\n    let sum = 0;\n    \n    \/\/ \ubc30\uc5f4\uc758 \uac01 \uc694\uc18c\ub97c \uc21c\ud68c\ud558\uba70 \ud569\uacc4 \uacc4\uc0b0\n    for (let i = 0; i &lt; numbers.length; i++) {\n        sum += numbers[i];\n    }\n    \n    \/\/ \ud3c9\uade0 \uacc4\uc0b0\n    const average = sum \/ numbers.length;\n    \n    \/\/ \ud3c9\uade0 \ubc18\ud658\n    return average;\n}\n\n\/\/ \uc608\uc2dc \ud14c\uc2a4\ud2b8\nconsole.log(calculateAverage([1, 2, 3, 4, 5])); \/\/ \ucd9c\ub825: 3\nconsole.log(calculateAverage([])); \/\/ \ucd9c\ub825: \"\ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.\"\n    <\/code><\/pre>\n<h2>\ubb38\uc81c \ud574\uacb0 \uacfc\uc815 \uc0c1\uc138 \uc124\uba85<\/h2>\n<h3>1\ub2e8\uacc4: \uc785\ub825 \ubc30\uc5f4 \ud655\uc778<\/h3>\n<p>\n        \uccab \ubc88\uc9f8 \ub2e8\uacc4\uc5d0\uc11c\ub294 \uc8fc\uc5b4\uc9c4 \ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\ub294\uc9c0\ub97c \ud655\uc778\ud569\ub2c8\ub2e4.<br \/>\n        \ub9cc\uc57d \ubc30\uc5f4\uc758 \uae38\uc774\uac00 0\uc774\ub77c\uba74, \ud568\uc218\ub294 \uc989\uc2dc &#8220;\ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.&#8221;\ub77c\ub294 \ubb38\uc790\uc5f4\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4.<br \/>\n        \uc774\ub294 \uc0ac\uc6a9\uc790\uac00 \uc785\ub825 \ubc30\uc5f4\uc744 \uc798\ubabb \uc9c0\uc815\ud588\uc744 \uacbd\uc6b0\uc5d0 \ub300\ud55c \uc608\uc678 \ucc98\ub9ac\uc785\ub2c8\ub2e4.\n    <\/p>\n<h3>2\ub2e8\uacc4: \ud569\uacc4 \uacc4\uc0b0<\/h3>\n<p>\n        \ubc30\uc5f4\uc774 \ube44\uc5b4\uc788\uc9c0 \uc54a\ub2e4\uba74, \ub2e4\uc74c \ub2e8\uacc4\ub85c \ub118\uc5b4\uac00 \ud569\uacc4\ub97c \uacc4\uc0b0\ud569\ub2c8\ub2e4.<br \/>\n        \uc5ec\uae30\uc11c\ub294 <code>sum<\/code>\uc774\ub77c\ub294 \ubcc0\uc218\ub97c 0\uc73c\ub85c \ucd08\uae30\ud654\ud55c \ub2e4\uc74c, \ubc30\uc5f4\uc758 \uac01 \uc694\uc18c\ub97c \uc21c\ud68c\ud558\uba74\uc11c<br \/>\n        \uadf8 \uac12\uc744 \ud569\uc0b0\ud569\ub2c8\ub2e4. \ubc30\uc5f4\uc758 \uae38\uc774\ub294 <code>numbers.length<\/code>\ub85c \ud655\uc778\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h3>3\ub2e8\uacc4: \ud3c9\uade0 \uacc4\uc0b0<\/h3>\n<p>\n        \ud569\uc0b0\uc774 \uc644\ub8cc\ub418\uba74, \ubc30\uc5f4\uc758 \uae38\uc774\ub85c \ud569\uacc4\ub97c \ub098\ub204\uc5b4 \ud3c9\uade0 \uac12\uc744 \uacc4\uc0b0\ud569\ub2c8\ub2e4.<br \/>\n        \uc774 \uacfc\uc815\uc5d0\uc11c <code>const average = sum \/ numbers.length;<\/code>\uc640 \uac19\uc774 \uacc4\uc0b0\uc2dd\uc744 \uc791\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br \/>\n        \ud3c9\uade0\uc740 \uc18c\uc218 \ubd80\ubd84\uc744 \ud3ec\ud568\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c, \ubcc4\ub3c4\ub85c \uc18c\uc218\uc810 \uc774\ud558\uc758 \uc790\ub9ac\uc218\ub97c \uc870\uc815\ud560 \ud544\uc694\uac00 \uc5c6\uc73c\uba74 \uc774\ub807\uac8c \uac04\ub2e8\ud788 \ubc18\ud658\ud558\uba74 \ub429\ub2c8\ub2e4.\n    <\/p>\n<h3>4\ub2e8\uacc4: \uacb0\uacfc \ubc18\ud658<\/h3>\n<p>\n        \ub9c8\uc9c0\ub9c9 \ub2e8\uacc4\uc5d0\uc11c\ub294 \uacc4\uc0b0\ub41c \ud3c9\uade0 \uac12\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4.<br \/>\n        \uc774 \uac12\uc740 \ud638\ucd9c\ud55c \ucabd\uc5d0\uc11c \ucd9c\ub825\ud560 \uc218 \uc788\ub3c4\ub85d <code>console.log<\/code>\ub098 \ub2e4\ub978 \ubc29\ubc95\uc73c\ub85c \ud65c\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>\uacb0\uacfc \ubc0f \ubcf5\uc2b5<\/h2>\n<p>\n        \uc774\uc640 \uac19\uc774 \ud3c9\uade0\uc744 \uad6c\ud558\ub294 \uc54c\uace0\ub9ac\uc998\uc740 \ubc30\uc5f4\uc758 \uae38\uc774\uac00 0\uc778\uc9c0 \ud655\uc778\ud558\ub294 \uc608\uc678 \ucc98\ub9ac\uc640<br \/>\n        \uc21c\ud68c\ud558\uc5ec \ud569\uc744 \uad6c\ud558\ub294 \ub2e8\uc21c\ud55c \ubc29\ubc95\uc73c\ub85c \uad6c\ud604\ub429\ub2c8\ub2e4.\n    <\/p>\n<p>\n        \ubcf5\uc2b5\ud574\ubcf4\uba74, \ud3c9\uade0\uc744 \uad6c\ud558\ub294 \uacfc\uc815\uc740 \uad04\ud638 \ub0b4 \ubaa8\ub4e0 \uc22b\uc790\ub97c \ub354\ud55c \ud6c4, \uadf8 \uac12\uc744<br \/>\n        \uc22b\uc790\uc758 \uc218\ub85c \ub098\ub204\uc5b4\uc11c \ub3c4\ucd9c\ud569\ub2c8\ub2e4.<br \/>\n        \uc774 \uacfc\uc815\uc5d0\uc11c \uc608\uc678 \uc0c1\ud669\uc744 \ucc98\ub9ac\ud558\ub294 \uac83\uc740 \uc2e4\uc81c \ucf54\ub529 \ud14c\uc2a4\ud2b8\uc5d0\uc11c \ub9e4\uc6b0 \uc911\uc694\ud558\ubbc0\ub85c<br \/>\n        \ud56d\uc0c1 \uc720\uc758\ud574\uc57c \ud569\ub2c8\ub2e4.\n    <\/p>\n<h2>\uc5b4\ub824\uc6c0 \uadf9\ubcf5\ud558\uae30<\/h2>\n<p>\n        \uc774 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \ub3d9\uc548 \uace0\ub824\ud574\uc57c \ud560 \uc810\uc740 \uc544\ub798\uc640 \uac19\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<ul>\n<li>\uc785\ub825 \ubc30\uc5f4\uc774 \ud56d\uc0c1 \uc22b\uc790\ub85c \uc774\ub8e8\uc5b4\uc838 \uc788\ub294\uc9c0 \ud655\uc778 \ud544\uc694<\/li>\n<li>\uc608\uc678 \ucc98\ub9ac \uc2dc \ubc18\ud658\ud560 \uba54\uc2dc\uc9c0 \ub610\ub294 \uac12\uc744 \uc77c\uad00\uc131 \uc788\uac8c \uc815\uc758<\/li>\n<li>\uc22b\uc790\uac00 \uc544\ub2cc \uc694\uc18c\uac00 \ud3ec\ud568\ub41c \uacbd\uc6b0 \ucc98\ub9ac \ubc29\ubc95 \uace0\ub824<\/li>\n<\/ul>\n<p>\n        \ucf54\ub529 \ud14c\uc2a4\ud2b8\ub97c \uc9c4\ud589\ud560 \ub54c, \uc704\uc640 \uac19\uc740 \uc608\uc678 \uc0c1\ud669\ub4e4\uc744 \ud56d\uc0c1 \uc5fc\ub450\uc5d0 \ub450\uc5b4\uc57c<br \/>\n        \ubb38\uc81c\uac00 \ubc1c\uc0dd\ud560 \ud655\ub960\uc744 \uc904\uc77c \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>\ub9c8\ubb34\ub9ac<\/h2>\n<p>\n        \ud3c9\uade0 \uad6c\ud558\uae30 \ubb38\uc81c\ub294 \uac04\ub2e8\ud558\uc9c0\ub9cc, \ub2e4\uc591\ud55c \uc608\uc678 \uc0c1\ud669\uacfc \uc870\uac74\uc744 \uace0\ub824\ud574\uc57c<br \/>\n        \ud558\ubbc0\ub85c \ud56d\uc0c1 \uc8fc\uc758 \uae4a\uac8c \uc811\uadfc\ud574\uc57c \ud569\ub2c8\ub2e4. \uc5f0\uc2b5\uc744 \ud1b5\ud574 \uc54c\uace0\ub9ac\uc998\uc744 \ubcf4\ub2e4<br \/>\n        \ud6a8\uacfc\uc801\uc73c\ub85c \uad6c\ud604\ud560 \uc218 \uc788\uc744 \uac83\uc785\ub2c8\ub2e4.\n    <\/p>\n<p>\n        \ud639\uc2dc \ub354 \uad81\uae08\ud55c \uc0ac\ud56d\uc774\ub098 \uc758\ubb38\uc774 \uc788\ub2e4\uba74 \ub313\uae00\ub85c \ub0a8\uaca8\uc8fc\uc138\uc694!<br \/>\n        \ub2e4\uc74c \uc2dc\uac04\uc5d0\ub294 \ub2e4\ub978 \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c\ub97c \uac00\uc9c0\uace0 \ucc3e\uc544\ubd59\uaca0\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 \uc22b\uc790\ub4e4\uc758 \ubc30\uc5f4\uc774 \uc788\uc744 \ub54c, \uc774 \uc22b\uc790\ub4e4\uc758 \ud3c9\uade0\uc744 \uacc4\uc0b0\ud558\ub294 \ud568\uc218\ub97c \uc791\uc131\ud558\uc138\uc694. \ud3c9\uade0\uc740 \ubaa8\ub4e0 \uc22b\uc790\uc758 \ud569\uc744 \uc22b\uc790\uc758 \uac1c\uc218\ub85c \ub098\ub208 \uac12\uc785\ub2c8\ub2e4. \ubc30\uc5f4\uc774 \ube44\uc5b4\uc788\uc744 \uacbd\uc6b0\uc5d0\ub294 \uc608\uc678 \ucc98\ub9ac\ub97c \ud558\uc5ec \uc801\uc808\ud55c \uba54\uc2dc\uc9c0\ub97c \ubc18\ud658\ud574\uc57c \ud569\ub2c8\ub2e4. \ubb38\uc81c \uc608\uc2dc \uc785\ub825: [1, 2, 3, 4, 5] \ucd9c\ub825: 3 \uc785\ub825: [] \ucd9c\ub825: &#8220;\ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.&#8221; \uc54c\uace0\ub9ac\uc998 \uc811\uadfc \ubc29\ubc95 \uc774 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\uae30 \uc704\ud574, \ub2e4\uc74c\uacfc &hellip; <a href=\"https:\/\/atmokpo.com\/w\/27932\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30&#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":[26],"tags":[],"class_list":["post-27932","post","type-post","status-publish","format-standard","hentry","category-26"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30 - \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\/27932\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 \uc22b\uc790\ub4e4\uc758 \ubc30\uc5f4\uc774 \uc788\uc744 \ub54c, \uc774 \uc22b\uc790\ub4e4\uc758 \ud3c9\uade0\uc744 \uacc4\uc0b0\ud558\ub294 \ud568\uc218\ub97c \uc791\uc131\ud558\uc138\uc694. \ud3c9\uade0\uc740 \ubaa8\ub4e0 \uc22b\uc790\uc758 \ud569\uc744 \uc22b\uc790\uc758 \uac1c\uc218\ub85c \ub098\ub208 \uac12\uc785\ub2c8\ub2e4. \ubc30\uc5f4\uc774 \ube44\uc5b4\uc788\uc744 \uacbd\uc6b0\uc5d0\ub294 \uc608\uc678 \ucc98\ub9ac\ub97c \ud558\uc5ec \uc801\uc808\ud55c \uba54\uc2dc\uc9c0\ub97c \ubc18\ud658\ud574\uc57c \ud569\ub2c8\ub2e4. \ubb38\uc81c \uc608\uc2dc \uc785\ub825: [1, 2, 3, 4, 5] \ucd9c\ub825: 3 \uc785\ub825: [] \ucd9c\ub825: &quot;\ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.&quot; \uc54c\uace0\ub9ac\uc998 \uc811\uadfc \ubc29\ubc95 \uc774 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\uae30 \uc704\ud574, \ub2e4\uc74c\uacfc &hellip; \ub354 \ubcf4\uae30 &quot;\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/27932\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-27T15:20:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T07:13:31+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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/27932\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27932\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30\",\"datePublished\":\"2024-10-27T15:20:26+00:00\",\"dateModified\":\"2024-11-26T07:13:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27932\/\"},\"wordCount\":0,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/27932\/\",\"url\":\"https:\/\/atmokpo.com\/w\/27932\/\",\"name\":\"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-27T15:20:26+00:00\",\"dateModified\":\"2024-11-26T07:13:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27932\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/27932\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/27932\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30\"}]},{\"@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":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30 - \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\/27932\/","og_locale":"ko_KR","og_type":"article","og_title":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 \uc22b\uc790\ub4e4\uc758 \ubc30\uc5f4\uc774 \uc788\uc744 \ub54c, \uc774 \uc22b\uc790\ub4e4\uc758 \ud3c9\uade0\uc744 \uacc4\uc0b0\ud558\ub294 \ud568\uc218\ub97c \uc791\uc131\ud558\uc138\uc694. \ud3c9\uade0\uc740 \ubaa8\ub4e0 \uc22b\uc790\uc758 \ud569\uc744 \uc22b\uc790\uc758 \uac1c\uc218\ub85c \ub098\ub208 \uac12\uc785\ub2c8\ub2e4. \ubc30\uc5f4\uc774 \ube44\uc5b4\uc788\uc744 \uacbd\uc6b0\uc5d0\ub294 \uc608\uc678 \ucc98\ub9ac\ub97c \ud558\uc5ec \uc801\uc808\ud55c \uba54\uc2dc\uc9c0\ub97c \ubc18\ud658\ud574\uc57c \ud569\ub2c8\ub2e4. \ubb38\uc81c \uc608\uc2dc \uc785\ub825: [1, 2, 3, 4, 5] \ucd9c\ub825: 3 \uc785\ub825: [] \ucd9c\ub825: \"\ubc30\uc5f4\uc774 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.\" \uc54c\uace0\ub9ac\uc998 \uc811\uadfc \ubc29\ubc95 \uc774 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\uae30 \uc704\ud574, \ub2e4\uc74c\uacfc &hellip; \ub354 \ubcf4\uae30 \"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/27932\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-27T15:20:26+00:00","article_modified_time":"2024-11-26T07:13:31+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/27932\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/27932\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30","datePublished":"2024-10-27T15:20:26+00:00","dateModified":"2024-11-26T07:13:31+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/27932\/"},"wordCount":0,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/27932\/","url":"https:\/\/atmokpo.com\/w\/27932\/","name":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-27T15:20:26+00:00","dateModified":"2024-11-26T07:13:31+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/27932\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/27932\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/27932\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud3c9\uade0 \uad6c\ud558\uae30"}]},{"@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":[{"id":27966,"url":"https:\/\/atmokpo.com\/w\/27966\/","url_meta":{"origin":27932,"position":0},"title":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ubc30\uc5f4\uacfc \ub9ac\uc2a4\ud2b8","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: [\ub0a0\uc9dc] \ubb38\uc81c \uc124\uba85 \ub2f9\uc2e0\uc740 \uc815\uc218\ub85c \uad6c\uc131\ub41c \ubc30\uc5f4\uc744 \uc785\ub825\ubc1b\uc544 \uac01 \uc6d0\uc18c\uc758 \ucc28\uc774\ub97c \ub098\ud0c0\ub0b4\ub294 \uc0c8\ub85c\uc6b4 \ubc30\uc5f4\uc744 \ubc18\ud658\ud574\uc57c \ud569\ub2c8\ub2e4. \uc0c8\ub85c\uc6b4 \ubc30\uc5f4\uc758 i\ubc88\uc9f8 \uc6d0\uc18c\ub294 \uc785\ub825 \ubc30\uc5f4\uc758 i\ubc88\uc9f8 \uc6d0\uc18c\uc640 \uadf8 \ub2e4\uc74c \uc6d0\uc18c\uc758 \ucc28\uc774\uc5d0 \ud574\ub2f9\ud569\ub2c8\ub2e4. \ub9c8\uc9c0\ub9c9 \uc6d0\uc18c\ub294 \ub2e4\uc74c \uc6d0\uc18c\uac00 \uc5c6\uae30 \ub54c\ubb38\uc5d0 \ud2b9\ubcc4\ud55c \ucc98\ub9ac\uac00 \ud544\uc694\ud569\ub2c8\ub2e4. \uc785\ub825 \uc815\uc218 \ubc30\uc5f4 nums (\uc0ac\uc774\uc988 n, 1 \u2264 n\u2026","rel":"","context":"&quot;\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9e%90%eb%b0%94%ec%8a%a4%ed%81%ac%eb%a6%bd%ed%8a%b8-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":28039,"url":"https:\/\/atmokpo.com\/w\/28039\/","url_meta":{"origin":27932,"position":1},"title":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uce74\ub4dc \uac8c\uc784","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: [\ub0a0\uc9dc] 1. \uc18c\uac1c \ucf54\ub529\ud14c\uc2a4\ud2b8\ub294 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uac1c\ubc1c\uc790 \ucc44\uc6a9 \uacfc\uc815\uc758 \uc911\uc694\ud55c \ubd80\ubd84\uc73c\ub85c, \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c \ud480\uc774 \ub2a5\ub825\uc744 \ud3c9\uac00\ud569\ub2c8\ub2e4. \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8\ub85c \uce74\ub4dc \uac8c\uc784 \uad00\ub828 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \uacfc\uc815\uc744 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uce74\ub4dc \uac8c\uc784\uc740 \ub9ce\uc740 \uc0ac\ub78c\ub4e4\uc5d0\uac8c \uc775\uc219\ud55c \ud615\ud0dc\uc758 \uac8c\uc784\uc774\uba70, \uc774\ub97c \ud1b5\ud574 \uae30\ubcf8\uc801\uc778 \uc54c\uace0\ub9ac\uc998 \uc0ac\uace0\ub97c \ud560 \uc218 \uc788\ub294 \uae30\ud68c\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8\ub294 \uc6f9 \uae30\ubc18 \ud658\uacbd\uc5d0\uc11c\u2026","rel":"","context":"&quot;\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9e%90%eb%b0%94%ec%8a%a4%ed%81%ac%eb%a6%bd%ed%8a%b8-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":26730,"url":"https:\/\/atmokpo.com\/w\/26730\/","url_meta":{"origin":27932,"position":2},"title":"\uc790\ubc14 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uad6c\uac04 \ud569 \uad6c\ud558\uae30 2","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc800\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \ubb38\uc81c \uc124\uba85 \uc774\ubc88 \uc2dc\uac04\uc5d0\ub294 \uad6c\uac04 \ud569 \ubb38\uc81c\ub97c \ub2e4\ub904 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc54c\uace0\ub9ac\uc998 \ubc0f \ucf54\ub529 \ud14c\uc2a4\ud2b8\uc5d0\uc11c \uc790\uc8fc \uc811\ud560 \uc218 \uc788\ub294 \ubb38\uc81c \uc911 \ud558\ub098\ub85c, \uc8fc\uc5b4\uc9c4 \ubc30\uc5f4\uc758 \ud2b9\uc815 \uad6c\uac04\uc758 \ud569\uc744 \ud6a8\uc728\uc801\uc73c\ub85c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \ubc30\uc6cc\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \ubb38\uc81c\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4. \uc815\uc218\ub85c \uc774\ub8e8\uc5b4\uc9c4 \ubc30\uc5f4 A\uc640 \ub2e4\uc591\ud55c \ucffc\ub9ac\ub4e4\uc774 \uc8fc\uc5b4\uc9c8 \ub54c, \uac01 \ucffc\ub9ac\uc5d0\uc11c \uc81c\uc2dc\ud55c\u2026","rel":"","context":"&quot;\uc790\ubc14 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\uc790\ubc14 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9e%90%eb%b0%94-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":27833,"url":"https:\/\/atmokpo.com\/w\/27833\/","url_meta":{"origin":27932,"position":3},"title":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ud589\ub82c \uacf1 \uc5f0\uc0b0 \ud69f\uc218\uc758 \ucd5c\uc19f\uac12 \uad6c\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 | \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c \ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 N\uac1c\uc758 \ud589\ub82c\uc5d0 \ub300\ud574, \uc774 \ud589\ub82c\ub4e4\uc744 \uacf1\ud560 \ub54c \ud544\uc694\ud55c \uc5f0\uc0b0 \ud69f\uc218\uc758 \ucd5c\uc19f\uac12\uc744 \uad6c\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \ud589\ub82c \uacf1\uc148\uc758 \uc5f0\uc0b0 \ud69f\uc218\ub294 \uacf1\uc148\uc758 \uc21c\uc11c\uc5d0 \ub530\ub77c \ud06c\uac8c \ub2ec\ub77c\uc9c0\uba70, \ub530\ub77c\uc11c \uc62c\ubc14\ub978 \uc21c\uc11c\ub97c \ucc3e\uc544\uc57c \ud569\ub2c8\ub2e4. \ud589\ub82c A\uc758 \ud06c\uae30\uac00 p \u00d7 q, \ud589\ub82c B\uc758 \ud06c\uae30\uac00 q \u00d7 r\uc77c \ub54c,\u2026","rel":"","context":"&quot;\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9e%90%eb%b0%94%ec%8a%a4%ed%81%ac%eb%a6%bd%ed%8a%b8-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":27950,"url":"https:\/\/atmokpo.com\/w\/27950\/","url_meta":{"origin":27932,"position":4},"title":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \ub3d9\uc804 \uac1c\uc218\uc758 \ucd5c\uc19f\uac12 \uad6c\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c \ubb38\uc81c \uc124\uba85 \ub3d9\uc804\uc73c\ub85c \uac70\uc2ac\ub7ec \uc904 \uc218 \uc788\ub294 \ucd5c\uc18c \uac1c\uc218\ub97c \uacc4\uc0b0\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \uc5ec\ub7ec\ubd84\uc740 \uc8fc\uc5b4\uc9c4 \ub3d9\uc804\uc758 \uc885\ub958\uc640 \ucd1d\uc561\uc744 \uae30\ubc18\uc73c\ub85c \ud574\uc11c \ub3d9\uc804\uc744 \ucd5c\uc18c \uac1c\uc218\ub85c \uc0ac\uc6a9\ud558\uc5ec \ucd1d\uc561\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \ucc3e\uc544\uc57c \ud569\ub2c8\ub2e4. \ub3d9\uc804\uc758 \uc885\ub958\ub294 \ubb34\ud55c\ud788 \ub9ce\ub2e4\uace0 \uac00\uc815\ud569\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ub3d9\uc804\uc758 \uc885\ub958\uac00 {1, 5, 10, 25} \ub3d9\uc804\uc774 \uc788\uace0, \ub9cc\ub4e4\uc5b4\uc57c \ud558\ub294\u2026","rel":"","context":"&quot;\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%9e%90%eb%b0%94%ec%8a%a4%ed%81%ac%eb%a6%bd%ed%8a%b8-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":26986,"url":"https:\/\/atmokpo.com\/w\/26986\/","url_meta":{"origin":27932,"position":5},"title":"\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \u2018\uc88b\uc740 \uc218\u2019 \uad6c\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 | \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c \ubb38\uc81c \uc124\uba85 \uc8fc\uc5b4\uc9c4 \uc22b\uc790 n\uc774 \u2018\uc88b\uc740 \uc218\u2019\ub77c\uba74, \uadf8 \uc218\ub97c \uad6c\ud558\ub294 \ubb38\uc81c\uc785\ub2c8\ub2e4. \u2018\uc88b\uc740 \uc218\u2019\uc758 \uc870\uac74\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4. \u2018\uc88b\uc740 \uc218\u2019\ub294 \ub450 \uc790\ub9ac \uc774\uc0c1\uc758 \uc790\uc5f0\uc218\uc774\ub2e4. \uac01 \uc790\ub9ac\uc758 \ud569\uc774 \ud640\uc218\uc778 \uc218\ub97c \u2018\uc88b\uc740 \uc218\u2019\ub85c \uc815\uc758\ud55c\ub2e4. \uc8fc\uc5b4\uc9c4 n \uc774\ud558\uc758 \ubaa8\ub4e0 \u2018\uc88b\uc740 \uc218\u2019\ub97c \ucc3e\uc544\ub0b4\uc5b4 \ub9ac\uc2a4\ud2b8\ub85c \ubc18\ud658\ud558\ub77c. \uc608\ub97c \ub4e4\uc5b4, n\uc774 30\uc77c\u2026","rel":"","context":"&quot;\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\uc36c \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ec%8d%ac-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27932","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=27932"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27932\/revisions"}],"predecessor-version":[{"id":27933,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27932\/revisions\/27933"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=27932"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=27932"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=27932"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}