2025-01-12 2025-01-12 problem 几秒读完 (大约71个字) 0次访问LC2264. 字符串中最大的 3 位相同数字题目链接:2264. 字符串中最大的 3 位相同数字 - 力扣(LeetCode) 题解 按题意模拟 参考代码 123456class Solution: def largestGoodInteger(self, num: str) -> str: for i in range(9, -1, -1): if str(i) * 3 in num: return str(i) * 3 return "" LC2264. 字符串中最大的 3 位相同数字https://blog.xiang578.com/problem/lc2264.html作者Ryen Xiang发布于2025-01-12更新于2025-01-12许可协议 LeetCode, Problems/2025
2025-04-20@Towards Personalized and Semantic Retrieval: An End-to-End Solution for E-commerce Search via Embedding Learning随手记