番外編
Ryuji's answer TypeScript import * as fs from 'fs' const input = fs.readFileSync("/dev/stdin", "utf8") const [nv, alist] = input.split("\n") const [n,v,..._] = nv.split(" ").map(Number) const list = alist.split(" ").map(Number) type LastIn…
API・ソフトウェアについて Application Programming Interfaceの略です。 ソフトウェアの機能を共有できる仕組みのこと。 ソフトウェアとは1・・・コンピュータのうち蹴っ飛ばせない部分 ソフトウェアとは2・・・ソフトやファイルなど人間様の手では触れ…
※先日のブログ記事の内容を一部転載し補足しています。 bundle install と bundle updateの違い bundlerをインストールすると、bundle installとbundle updateのコマンドが使えるようになるのですが、「そもそもそれらのコマンドの違いって、何?」と思った…