{"id":3524,"date":"2023-05-22T15:44:56","date_gmt":"2023-05-22T15:44:56","guid":{"rendered":"https:\/\/manorinfinity.com\/?p=3524"},"modified":"2023-05-22T15:48:51","modified_gmt":"2023-05-22T15:48:51","slug":"leetcode-series-valid-parenthesis-problem","status":"publish","type":"post","link":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/","title":{"rendered":"LeetCode Series: Valid Parenthesis Problem"},"content":{"rendered":"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"LeetCode Series: Valid Parenthesis Problem\" width=\"500\" height=\"375\" src=\"https:\/\/www.youtube.com\/embed\/qdZVnX_UqcY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>The Question is from the interview section of leetcode and is marked as easy difficult. Here is the description: <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Problem<\/h2>\n\n\n\n<p>Given a string&nbsp;<code>s<\/code>&nbsp;containing just the characters&nbsp;<code>'('<\/code>,&nbsp;<code>')'<\/code>,&nbsp;<code>'{'<\/code>,&nbsp;<code>'}'<\/code>,&nbsp;<code>'['<\/code>&nbsp;and&nbsp;<code>']'<\/code>, determine if the input string is valid.<\/p>\n\n\n\n<p>An input string is valid if:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open brackets must be closed by the same type of brackets.<\/li>\n\n\n\n<li>Open brackets must be closed in the correct order.<\/li>\n\n\n\n<li>Every close bracket has a corresponding open bracket of the same type.<\/li>\n<\/ol>\n\n\n\n<p><strong>Example 1:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>Input:<\/strong> s = \"()\"\n<strong>Output:<\/strong> true\n<\/pre>\n\n\n\n<p><strong>Example 2:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>Input:<\/strong> s = \"()[]{}\"\n<strong>Output:<\/strong> true\n<\/pre>\n\n\n\n<p><strong>Example 3:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>Input:<\/strong> s = \"(]\"\n<strong>Output:<\/strong> false<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>var ValidParenthesis = function(str) {\n    if(str.length == 1){\n        return false; \n    }\n    let obj = {\n        '(': ')',\n        '{': '}',\n        '&#91;':  ']'\n    }\n    let objKeys = &#91;'(', '{', '&#91;'];\n    let arr = &#91;];\n    let length = str.length;\n    let i = 0;\n    while(i&lt;length){\n        if(objKeys.includes(str&#91;i])){\n            arr.push(str&#91;i]);\n            i++;\n        }else{\n            let ch = arr.pop();\n            if(ch=='(' &amp;&amp; str&#91;i] == ')' || ch=='&#91;' &amp;&amp; str&#91;i] == ']' || ch=='{' &amp;&amp; str&#91;i] == '}'){\n                i++;\n            }else{\n                return false;\n            }\n        }\n    }\n    if(arr.length == 0){\n        return true;\n    }else{\n        return false;\n    }\n};<\/code><\/pre>\n\n\n\n<p>Watch the video for a full code walkthrough and optimisation steps. If you do have any questions or feedback feel free to add comments. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Question is from the interview section of leetcode and is marked as easy difficult. Here is the description: The Problem Given a string&nbsp;s&nbsp;containing just the characters&nbsp;&#8216;(&#8216;,&nbsp;&#8216;)&#8217;,&nbsp;&#8216;{&#8216;,&nbsp;&#8216;}&#8217;,&nbsp;&#8216;[&#8216;&nbsp;and&nbsp;&#8216;]&#8217;, determine if the input string is valid. An input string is valid if: Example 1: Input: s = &#8220;()&#8221; Output: true Example 2:&#8230;<\/p>\n<div class=\"more-link-wrapper\"><a class=\"more-link\" href=\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/\">Read the post<span class=\"screen-reader-text\">LeetCode Series: Valid Parenthesis Problem<\/span><\/a><\/div>\n","protected":false},"author":1,"featured_media":3525,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[1206,1208],"class_list":["post-3524","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-infinity-fitness","tag-leetcode","tag-software-engineer","excerpt","zoom","full-without-featured","even","excerpt-0"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.12 (Yoast SEO v26.8) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>LeetCode Series: Valid Parenthesis Problem | ManOrInfinity<\/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:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LeetCode Series: Valid Parenthesis Problem\" \/>\n<meta property=\"og:description\" content=\"The Question is from the interview section of leetcode and is marked as easy difficult. Here is the description: The Problem Given a string&nbsp;s&nbsp;containing just the characters&nbsp;&#039;(&#039;,&nbsp;&#039;)&#039;,&nbsp;&#039;{&#039;,&nbsp;&#039;}&#039;,&nbsp;&#039;[&#039;&nbsp;and&nbsp;&#039;]&#039;, determine if the input string is valid. An input string is valid if: Example 1: Input: s = &quot;()&quot; Output: true Example 2:&#8230;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/\" \/>\n<meta property=\"og:site_name\" content=\"ManOrInfinity\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-22T15:44:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-22T15:48:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"manorinfinity\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@manorinfinity\" \/>\n<meta name=\"twitter:site\" content=\"@manorinfinity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"manorinfinity\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/\"},\"author\":{\"name\":\"manorinfinity\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901\"},\"headline\":\"LeetCode Series: Valid Parenthesis Problem\",\"datePublished\":\"2023-05-22T15:44:56+00:00\",\"dateModified\":\"2023-05-22T15:48:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/\"},\"wordCount\":122,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901\"},\"image\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1\",\"keywords\":[\"leetcode\",\"software engineer\"],\"articleSection\":[\"Infinity Fitness\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/\",\"url\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/\",\"name\":\"LeetCode Series: Valid Parenthesis Problem | ManOrInfinity\",\"isPartOf\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1\",\"datePublished\":\"2023-05-22T15:44:56+00:00\",\"dateModified\":\"2023-05-22T15:48:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/manorinfinity.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"LeetCode Series: Valid Parenthesis Problem\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/#website\",\"url\":\"https:\/\/manorinfinity.com\/blog\/\",\"name\":\"ManOrInfinity\",\"description\":\"Thrive towards greatness\",\"publisher\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/manorinfinity.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901\",\"name\":\"manorinfinity\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/manorinfinity.com\/wp-content\/uploads\/2023\/06\/moi-logo.png\",\"contentUrl\":\"http:\/\/manorinfinity.com\/wp-content\/uploads\/2023\/06\/moi-logo.png\",\"width\":282,\"height\":260,\"caption\":\"manorinfinity\"},\"logo\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"Complex Problem Solver, Outloud Thinker, An Outstanding Writer, and a very curious human being\",\"sameAs\":[\"http:\/\/manorinfinity.com\"],\"url\":\"https:\/\/manorinfinity.com\/blog\/author\/manorinfinity\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"LeetCode Series: Valid Parenthesis Problem | ManOrInfinity","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:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/","og_locale":"en_US","og_type":"article","og_title":"LeetCode Series: Valid Parenthesis Problem","og_description":"The Question is from the interview section of leetcode and is marked as easy difficult. Here is the description: The Problem Given a string&nbsp;s&nbsp;containing just the characters&nbsp;'(',&nbsp;')',&nbsp;'{',&nbsp;'}',&nbsp;'['&nbsp;and&nbsp;']', determine if the input string is valid. An input string is valid if: Example 1: Input: s = \"()\" Output: true Example 2:&#8230;","og_url":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/","og_site_name":"ManOrInfinity","article_published_time":"2023-05-22T15:44:56+00:00","article_modified_time":"2023-05-22T15:48:51+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1","type":"image\/png"}],"author":"manorinfinity","twitter_card":"summary_large_image","twitter_creator":"@manorinfinity","twitter_site":"@manorinfinity","twitter_misc":{"Written by":"manorinfinity","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#article","isPartOf":{"@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/"},"author":{"name":"manorinfinity","@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901"},"headline":"LeetCode Series: Valid Parenthesis Problem","datePublished":"2023-05-22T15:44:56+00:00","dateModified":"2023-05-22T15:48:51+00:00","mainEntityOfPage":{"@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/"},"wordCount":122,"commentCount":0,"publisher":{"@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901"},"image":{"@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1","keywords":["leetcode","software engineer"],"articleSection":["Infinity Fitness"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/","url":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/","name":"LeetCode Series: Valid Parenthesis Problem | ManOrInfinity","isPartOf":{"@id":"https:\/\/manorinfinity.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#primaryimage"},"image":{"@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1","datePublished":"2023-05-22T15:44:56+00:00","dateModified":"2023-05-22T15:48:51+00:00","breadcrumb":{"@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#primaryimage","url":"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1","contentUrl":"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/manorinfinity.com\/blog\/2023\/05\/22\/leetcode-series-valid-parenthesis-problem\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/manorinfinity.com\/blog\/"},{"@type":"ListItem","position":2,"name":"LeetCode Series: Valid Parenthesis Problem"}]},{"@type":"WebSite","@id":"https:\/\/manorinfinity.com\/blog\/#website","url":"https:\/\/manorinfinity.com\/blog\/","name":"ManOrInfinity","description":"Thrive towards greatness","publisher":{"@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/manorinfinity.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901","name":"manorinfinity","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/image\/","url":"http:\/\/manorinfinity.com\/wp-content\/uploads\/2023\/06\/moi-logo.png","contentUrl":"http:\/\/manorinfinity.com\/wp-content\/uploads\/2023\/06\/moi-logo.png","width":282,"height":260,"caption":"manorinfinity"},"logo":{"@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/image\/"},"description":"Complex Problem Solver, Outloud Thinker, An Outstanding Writer, and a very curious human being","sameAs":["http:\/\/manorinfinity.com"],"url":"https:\/\/manorinfinity.com\/blog\/author\/manorinfinity\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/manorinfinity.com\/blog\/wp-content\/uploads\/2023\/05\/Purple-and-Cream-Modern-Minimal-Beauty-YouTube-Thumbnail-2.png?fit=1280%2C720&ssl=1","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/posts\/3524","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/comments?post=3524"}],"version-history":[{"count":3,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/posts\/3524\/revisions"}],"predecessor-version":[{"id":3529,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/posts\/3524\/revisions\/3529"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/media\/3525"}],"wp:attachment":[{"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/media?parent=3524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/categories?post=3524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/tags?post=3524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}