Atcoder Atcoder対策用入力・データ構造・数学・アルゴリズムの整理 スニペット 2023.11.11 Atcoderbit全探索Pythonアルゴリズムデータ構造ハッシュテーブル二分探索和の公式(等差数列の和)配列
Python 【Python】辞書をキー、値でソートする Pythonで辞書のソートをする方法をまとめる。 辞書はキーとバリューに分けられる。 キーとバリューのそれぞれを基準にして昇順、または降順にソートする手順を以下に記載する。 キーを基準にして昇順にソートする ... 2023.11.07 Pythonデータ構造ハッシュテーブル
LeetCode 【LeetCode】 1207. Unique Number of Occurrences 解答・解説【Python】 はじめに LeetCodeの問題を解答します。 なるべく、問題の和訳と詳細なコメントを書いています。 余裕があれば、複数のアプローチの解答と、実際の面接を想定して英語での解法やコメントを書いています。 様々な... 2023.05.21 LeetCodePythonハッシュテーブル配列
LeetCode 【LeetCode】12. Integer to Roman 解答・解説【Python】 問題 原文 Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, 2 is writte... 2023.03.11 LeetCodePythonハッシュテーブル
LeetCode 【LeetCode】3.Longest Substring Without Repeating Characters 解答・解説【Python】 問題 原文 Given a string s, find the length of the longest substring without repeating characters. Example 1: ... 2023.03.02 LeetCodePythonRusttwo pointerアルゴリズムハッシュテーブル
LeetCode 【LeetCode】61. Rotate List 解答・解説【Python】 問題 原文 Given the head of a linked list, rotate the list to the right by k places. Example 1: Example 2:... 2023.01.22 LeetCodePythonデータ構造ハッシュテーブル単方向連結リスト循環リスト連結リスト
LeetCode 【LeetCode】1.Two Sum 解答・解説【Python】 LeetCodeの問題を解きます。問題文は翻訳サイトと私の拙い英語力で和訳しており、正確でない可能性が高いためご注意ください。 問題文 原文 Given an array of integers nums and an integer... 2022.10.10 LeetCodePythonデータ構造ハッシュテーブルプログラミング