Python学習 Day5
問題
3つの数の最大値(maxなし)
処理
①A,B,C入力
②Aが最大か判定
③違えばBを判定
④それ以外はC
Python
A, B, C = map(int, input().split())
if A >= B and A >= C:
print(A)
elif B >= A and B >= C:
print(B)
else:
print(C)
#Python#AtCoder#100DaysOfCod
As a coder, the hardest bug isn’t in the code.
It’s distraction.
New frameworks.
New AI tools
New tutorials.
You start everything and finish nothing.
Now I focus on one thing: write code daily and ship small
That’s how real builders grow
#buildinpublic#coding#100DaysOfCod
The 3 things every developer hates dealing with:
Cron Schedules ("Does * * * * * run every minute or hour?")
Regex (Write-only language)
Timezones (UTC vs Local pain) I built tools to solve all three instantly. 👉 orbit2x.com#Coding#Productivity#100DaysOfCodn
Day 145 of #100daysofcod solved #potd on #gfg Candy
use 2 arr for left & right, traverse the arr 2 times if the ele is > then right increase it cnt by 1 from left ele & in right pass repeat the same
take the max from left & right arr for the ans
#coding#CodingJourney#LeetCode
Day 53! 🐍
Big shift today: moved into Asynchronous Programming and the core pillars of OOP (Classes, Inheritance, and Polymorphism).
I'm learning how to make my code reusable, flexible, and efficient. No more messy scripts it’s time for proper software design. 🏗️🚀
#100DaysOfCodjPD
Day 26 — Thinking differently
List comprehension changed how I approach problems today.
The NATO Alphabet project made the lesson stick.
Clean logic feels good.
#PythonJourney#100DaysOfCod
Day 26 — Thinking differently
List comprehension changed how I approach problems today.
The NATO Alphabet project made the lesson stick.
Clean logic feels good.
#PythonJourney#100DaysOfCod