2023-05-01から1ヶ月間の記事一覧

レビュー観点集

観点一覧 - テスト - セキュリティ - リーダブルコード - オブジェクト指向 - アーキテクチャ

【LeetCode】1768. Merge Strings Alternately  

概要 一番最初の考え word1とword2のどちらのほうが長いかを確認する。 短い方の長さでループを回し、word1,word2から交互に1文字ずつ解答用の文字列に入れていく 余った方の残りを解答用の文字列に入れる 出力 コピペ忘れて消したので貼り付けなし。 impor…

【LeetCode】1. Two Sum

概要 一番最初の func twoSum(nums []int, target int) []int { for parentIdx, parentVal := range nums { for childIdx, childVal := range nums { if (childIdx == parentIdx){ continue } if (childVal + parentVal == target){ return []int{childIdx, …