<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>awacio</author_name>
  <author_url>https://blog.hatena.ne.jp/awacio/</author_url>
  <blog_title>awacio.log</blog_title>
  <blog_url>https://awacio.hatenadiary.org/</blog_url>
  <categories>
    <anon>Scheme</anon>
    <anon>SICP</anon>
  </categories>
  <description>【問題】 集合は相異なる要素のリストで表現できる。また、集合の全ての部分集合の集合を、リストのリストで表現できる。例えば集合が (1 2 3)の時、全ての部分集合の集合は、 (() (3) (2) (2 3) (1) (1 3) (1 2) (1 2 3) )である。集合の部分集合の集合を作り出す手続きの次の定義を完成し、なぜうまく行くか、明解に説明せよ。 (define (subsets s) (if (null? s) (list '()) (let ((rest (subsets (cdr s)))) (append rest (map &lt;??&gt; rest))))) 【解答】 いや〜、と…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fawacio.hatenadiary.org%2Fentry%2F20100512%2F1273670118&quot; title=&quot;SICP 問題 2.32（部分集合を求める） - awacio.log&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2010-05-12 22:15:18</published>
  <title>SICP 問題 2.32（部分集合を求める）</title>
  <type>rich</type>
  <url>https://awacio.hatenadiary.org/entry/20100512/1273670118</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
