『面接でコーディングの問題を出されたときの対処法』
https://web.archive.org/web/20220706052212/https://qiita.com/shtrkmd/items/35fd4117736b57d8a444

> const collection = [1, 2, 4, 5]
> const x = 8
>
> function solve(collection, x) {
>   const length = collection.length
>   for (var i = 0; i < length - 1; i++) {
>     const element = collection[i]
>     const rest = collection.slice(i + 1, length)
>     for (var j = 0; j < rest.length; j++) {
>       if (element + rest[j] === x) {
>         return true;
>       }
>     }
>   }
>   return false;
> }

↑こんなコード書いてる人がプロフィール見ると

https://qiita.com/shtrkmd
> 📍東京
> 🏢Microsoft

とあって驚いたのだけど就職とコーディング能力って関係ないんじゃないか?