5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

rubyでの配列同士の比較

Posted at

#配列同士での比較

rubyで配列1と配列2を付き合わせて同じ値が入っているかどうかを調べる時

array1 = [1,2,3,4,5]
array2 = [5,6,7,8,9]

(array1 & array2).present?

これでtrueが返ってくる。

#参考記事
https://qiita.com/tomomomo1217/items/c8a2db5bbcdccdb20690

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?