<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>asc_meta</author_name>
  <author_url>https://blog.hatena.ne.jp/asc_meta/</author_url>
  <blog_title>「好き」をブチ抜く</blog_title>
  <blog_url>https://www.buchinuku.work/</blog_url>
  <categories>
    <anon>プログラミング</anon>
    <anon>プログラミング-Python</anon>
  </categories>
  <description>バブルソート def bubble_sort(array): n = len(array) for i in range(n-1): for j in range(n-1,i,-1): #開始、終了、ステップ ''' iが左端。つまり最小値。左端であるiをソート済みにし、 開始n-1つまり右端に戻る。 ''' if array[j] &lt; array[j-1]: tmp = array[j] array[j] = array[j-1] array[j-1] = tmp 選択ソート def selection_sort(array): n = len(array) for i in range(0…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fwww.buchinuku.work%2Fentry%2F2018%2F03%2F20%2F214032&quot; title=&quot;基本ソートをpythonで - 「好き」をブチ抜く&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>2018-03-20 21:40:32</published>
  <title>基本ソートをpythonで</title>
  <type>rich</type>
  <url>https://www.buchinuku.work/entry/2018/03/20/214032</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
