2018-05-02から1日間の記事一覧

アメリカのコンピューターサイエンス学生事情

こんにちは! 実は筆者、大学院時代はアメリカで過ごしたので私が見てきたアメリカのCS学科を記録したいと思います。 *私が見てきた事、聞いてきた事に限るので学校毎にもしかしたら違いがあるかもしれません。 学科は細かく分かれていない 日本見たく、情…

LeetCode #4. Median of Two Sorted Arrays プログラミング練習

問題: There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).Example 1: nums1 = [1, 3] nums2 = [2]The median is 2.0 Example…