diff --git a/349-Intersection-of-Two-Arrays/note.md b/349-Intersection-of-Two-Arrays/note.md
new file mode 100644
index 0000000..90f8869
--- /dev/null
+++ b/349-Intersection-of-Two-Arrays/note.md
@@ -0,0 +1,56 @@
+# 349. Intersection of Two Arrays
+
+
+
+## step1(まず通す)
+
+set にして intersection をとってlist に戻す。
+
+## step2(整形&他の人のコードを読む)
+
+intersection は `&` でも `set.intersection()` でも取れる。
+
+### 違いは何?
+
+ によると
+
+> Note, the non-operator versions of union(), intersection(), difference(), symmetric_difference(), issubset(), and issuperset() methods will accept any iterable as an argument. In contrast, their operator based counterparts require their arguments to be sets. This precludes error-prone constructions like set('abc') & 'cbs' in favor of the more readable set('abc').intersection('cbs').
+
+つまりメソッドの方を使うと以下のように書ける。
+
+```python
+class Solution:
+ def intersection(self, nums1: list[int], nums2: list[int]) -> list[int]:
+ nums1_set = set(nums1)
+ return list(nums1_set.intersection(nums2))
+```
+
+個人的には、可換な演算子というか、対等な2つを並べる時にメソッドで書くのそんなに好きじゃないかもしれない。`2.add(1)` みたいな感じに見える。
+
+ただし、 `&` より `intersection` のほうがインターセクションだとわかりやすい( `&&` とか `and` とかと混乱しない)という点ではメソッドの方が好ましいかもしれない。
+
+また、メソッドは複数の引数を取れるので 3 つ以上の集合をまとめて処理したいときは見やすいかもしれない。
+
+#### 自分になかった観点
+
+「set 化はリストの全要素をハッシュ化してハッシュテーブルに挿入する(リサイズの可能性も含む)ので結構重い処理」
+
+-
+ - メソッドの場合、CPython は内部的には引数が set の場合とそうでない場合を分けて処理している。
+ -
+ - 引数が set でない場合、set にせずに「引数の要素をハッシュ化→ set にあったら result に挿入」という処理をするので set にしてから渡すよりも速そう
+ - 単純に重い処理が少ないし、空間計算量も小さくてキャッシュにも乗りやすそう
+
+ということで、短い方をセットにした方がいいだろうということで step2 を書いてみた
+
+### set と intersection を使わずに書きたい場合
+
+-
+ -
+ - 片方がとても大きくて、片方とてもて小さい、かつ大きい方がソートされているとき
+ - コードや実験結果がとても参考になる
+ - 両方がソート済みの場合は両方の配列を頭から見ていって、一致した数が出てきたら採用する、という方式が使える
+
+とても勉強になる
+
+## step3(10分以内にさっとかける * 3回)
diff --git a/349-Intersection-of-Two-Arrays/step1.py b/349-Intersection-of-Two-Arrays/step1.py
new file mode 100644
index 0000000..8be6bf8
--- /dev/null
+++ b/349-Intersection-of-Two-Arrays/step1.py
@@ -0,0 +1,5 @@
+class Solution:
+ def intersection(self, nums1: list[int], nums2: list[int]) -> list[int]:
+ nums1_set = set(nums1)
+ nums2_set = set(nums2)
+ return list(nums1_set & nums2_set)
diff --git a/349-Intersection-of-Two-Arrays/step2.py b/349-Intersection-of-Two-Arrays/step2.py
new file mode 100644
index 0000000..38bba38
--- /dev/null
+++ b/349-Intersection-of-Two-Arrays/step2.py
@@ -0,0 +1,6 @@
+class Solution:
+ def intersection(self, nums1: list[int], nums2: list[int]) -> list[int]:
+ if len(nums1) < len(nums2):
+ return list(set(nums1).intersection(nums2))
+ else:
+ return list(set(nums2).intersection(nums1))
diff --git a/349-Intersection-of-Two-Arrays/step3.py b/349-Intersection-of-Two-Arrays/step3.py
new file mode 100644
index 0000000..38bba38
--- /dev/null
+++ b/349-Intersection-of-Two-Arrays/step3.py
@@ -0,0 +1,6 @@
+class Solution:
+ def intersection(self, nums1: list[int], nums2: list[int]) -> list[int]:
+ if len(nums1) < len(nums2):
+ return list(set(nums1).intersection(nums2))
+ else:
+ return list(set(nums2).intersection(nums1))