Skip to content

Commit 9456f54

Browse files
committed
fix: refine flowchart arrow alignment and numeric literal consistency
- Fine-tune flowchart merge point arrows (HTML): adjust horizontal endpoints from 440/460 to 435/465 and vertical endpoints from 800/910 to 795/895 for better visual alignment - Fix numeric literal consistency (postgre.md): change COALESCE fallback from 0.00 to 0.0 to match earlier 100.0 formatting style
1 parent ef7c383 commit 9456f54

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

SQL/Leetcode/Intermediate Join/1174. Immediate Food Delivery II/Claude Sonnet 4.5 Extended/Immediate_Food_Delivery_II.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ <h3 class="text-xl font-semibold text-teal-800 mt-8 mb-3">
663663
<!-- 合流点の矢印 -->
664664
<!-- 即日配達から合流 -->
665665
<path
666-
d="M 790 690 L 790 760 L 460 760"
666+
d="M 790 690 L 790 760 L 465 760"
667667
stroke="#059669"
668668
stroke-width="2.5"
669669
fill="none"
@@ -672,7 +672,7 @@ <h3 class="text-xl font-semibold text-teal-800 mt-8 mb-3">
672672

673673
<!-- 予約配達から合流 -->
674674
<path
675-
d="M 110 690 L 110 760 L 440 760"
675+
d="M 110 690 L 110 760 L 435 760"
676676
stroke="#64748b"
677677
stroke-width="2.5"
678678
fill="none"
@@ -684,7 +684,7 @@ <h3 class="text-xl font-semibold text-teal-800 mt-8 mb-3">
684684

685685
<!-- 矢印: 合流 → 割合計算 -->
686686
<path
687-
d="M 450 768 L 450 800"
687+
d="M 450 768 L 450 795"
688688
stroke="#64748b"
689689
stroke-width="2.5"
690690
fill="none"
@@ -726,7 +726,7 @@ <h3 class="text-xl font-semibold text-teal-800 mt-8 mb-3">
726726

727727
<!-- 矢印: 割合計算 → 終了 -->
728728
<path
729-
d="M 450 875 L 450 910"
729+
d="M 450 875 L 450 895"
730730
stroke="#059669"
731731
stroke-width="2.5"
732732
fill="none"

SQL/Leetcode/Intermediate Join/1174. Immediate Food Delivery II/Claude Sonnet 4.5 Extended/Immediate_Food_Delivery_II_postgre.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ SELECT
9191
100.0 * COUNT(*) FILTER (WHERE is_immediate) / NULLIF(COUNT(*), 0),
9292
2
9393
),
94-
0.00
94+
0.0
9595
) AS immediate_percentage
9696
FROM first_orders;
9797
```

0 commit comments

Comments
 (0)