Mitsuki

2年間SlerでWebアプリケーションエンジニアとして仕事していたが、 アメリカで仕事…

Mitsuki

2年間SlerでWebアプリケーションエンジニアとして仕事していたが、 アメリカで仕事したく、会社をやめてシアトルへ。 今は語学学校行きながらフルタイムの仕事を探し中。

最近の記事

Leetcode 英語で説明する③(Java)

お題 https://leetcode.com/problems/merge-two-sorted-lists/description/ 1. アルゴリズムの説明 The issue is to merge two given list in sorted. To solve this, we'll compare the values of list1 and list2. Whichever smaller, we'll add the ListNode into

    • Leetcode を英語で説明する②(Java)

      お題 https://leetcode.com/problems/palindrome-number/ 説明順序 define the problem identify parameters and return type identify unique attributes explain constraints  explain algorithms   explain the code you wrote  answer time complexit

      • プログラミングでよく使う英単語(更新中)

        計算編 1 + 1 : one plus one, incremented by 1  2 * 2 : two time two, two multiply two 3 / 3 : 3 divided by 3 10 % 3 : 10 mod 3 ( answer is 1 ) 2^2 : two square 10^8 : 10 to the power of 8 数字編 1, 2, -1, -2 : whole number, integer : 整数

        • Leetcode を英語で説明する①(Java)

          https://leetcode.com/problems/two-sum/description/ 説明順序 define the problem identify parameters and return type identify unique attributes explain constraints  explain algorithms   explain the code you wrote  answer time complexity 

        Leetcode 英語で説明する③(Java)