LeetCode - Meeting Rooms - Day1 (1/1/2020)

Meeting Rooms Question Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] (si < ei), determine if a person could attend all meetings. Example 1: Input: [[0,30],[5,10],[15,20]] Output: false Exa…

LeetCode - Move Zeros - Day1 (1/1/2020)

Move Zeros Question Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. Example: Input: [0,1,0,3,12] Output: [1,3,12,0,0] Note: You must do this in-place wit…

LeetCode - Preface - Day1 (1/1/2020)

LeetCode as routine I have started LeetCode as a daily routine from New Year's Day of 2020! My daily goal is to solve and write write-ups for 5 questions per day. Why do I do this routine? The reason is simple. I really wanna pass the codi…

Tenka1 Programmer Beginner Contest 4/20/2019

はじめに 今までは時差(日本とシアトルは現時点で16時間の時差があります)のせいで、朝5時起きを強いられるAtCoderに手を付けていなかったのですが、goの練習がてらコンテストに参加することにしました。 結局、6時に起きてC問題まで解いて二度寝しました…

プロになるためのWeb技術入門 ~ なぜ,あなたはWebシステムを開発できないのか ~ by 小森裕介

web

はじめに 技術書を読むものの、内容をすぐ忘れてしまったり、メモする媒体がばらばらだったりするという問題に悩まされています。 これらを解決するためにも、一つの媒体に内容や書評をまとめていくことは有用であると感じたので、今まで読んできた本・これ…