This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 結論 | |
- 後は公式ドキュメントと実際に触るだけでいい。それが一番良い方法。といつもの技術要素と同じ様に扱える状態まで辿り着けたので楽になった。 | |
- だいたい基礎知識を得たと思うので、話していて足りないものはきっとその人が現場の経験から得たもの。と考えられる境界を得た。 | |
- 考えなくていいこと。の境界を得た | |
- さらに歴史を知りたい場合には、最近のちゃんとした本を選ぶつもりだが、選ぶ際の基準をある程度得た。 | |
今ガッとやっておいて、今後の関わりややることを考えるとコスパ良かったと思う。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark/ips' | |
ARRAY = [1, 2, 3, 1] | |
def fast | |
ARRAY.uniq! | |
end | |
def slow | |
ARRAY.uniq.length != ARRAY.length |
OlderNewer