sh1’s diary

プログラミング、読んだ本、資格試験、ゲームとか私を記録するところ

2025-08-01から1ヶ月間の記事一覧

GPT-5 for Coding の内容整理

2025年8月16日、「GPT-5 for Coding」というPDF資料が OpenAI の X の投稿で共有されています。 概要 1 Be precise and avoid conflicting information 意見 2 Use the right reasoning effort 意見 3 Use XML-like syntax to help structure 意見 4 Avoid o…

python データ構造 学習

Python チュートリアルを読んで気になったところをメモ。 データ構造1 squares = list(map(lambda x: x**2, range(10))) or squares = [x**2 for x in range(10)] or # 冗長な例 squares = [(lambda x: x**2)(x) for x in range(10)] 処理の流れ1: lambda…