@harumidiv(harumi)commented
```swift let horizonSizeClass = UITraitCollection(horizontalSizeClass: .regular) …
@harumidiv(harumi)commented
```swift let horizonSizeClass = UITraitCollection(horizontalSizeClass: .regular) …
@HMMNRSTcommented
Ruby2.5なら [`one?`](https://docs.ruby-lang.org/ja/2.5.0/method/Enumerable/i/one=3f.html) を使うともう少し簡単に…
@kts_h(Kts_h)commented
素直で、線形探索の回数が少なくなるようなコードは次のようなものなんだろうが、 ```ruby def dupli(str) acc = [] counter = Hash.new(0) …
@scivolacommented
少し簡素化できそうです。 文字列を文字の配列に変えるのは,`split("")` を使わなくても [`String#chars`](https://docs.ruby-lang.org/ja/2.…
@asmcommented
```ruby def dupli(d) d.chars.uniq.reject{|v| d.index(v) == d.rindex(v)} end dupli 'shichimitoucar…
@shiracamus(しらかみゅ)commented
「stuさん、名前を表示してください」でいいと思います。 「stu、名前を表示しろ」「stuは名前を表示する」とか読み方は人によって様々でしょうけど。
@poad1010(Kenji Saito)commented
この3つは、ログ解析でよくお世話になると思います。 * grep * sed * cut あとは、viもviewも、大きなファイルを開くと、すぐにメモリを食いつぶすので、編集が不要な場合はles…
@h_eastcommented
> sudo yum install mercurial ncurses-devel lua lua-devel mercurial は不要ではないでしょうか?
@asahina_dev(Asahina Alice)commented
mysqladmin のすすめ [https://dev.mysql.com/doc/refman/5.7/en/mysqladmin.html](https://dev.mysql.com/doc…
@fnfn44commented
mysql userのpasswordをmysql.user tableへのupdateで行えること自体を今日知りました。 mysqlはdb + tableでのデータ保存のみではなく、mysqlのc…