2 Star 5 Fork 0

Monomania/LeetCode_Algorithm_Plus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
模板.py 682 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@ Author: CJK_Monomania
@ Data: 2021-12-21
"""
from typing import *
from pprint import pprint
import numpy as np # 力扣里面没有
import pandas as pd
import sys # sys.maxsize---int的最大值
'''
@ 题目: Python
@ 参考链接:
int最大值: sys.maxsize
float最大值: float('inf')
'''
# Definition for singly-linked list.--链表
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def function(self, cost: List[int]) -> int:
pass
def main():
solu = Solution()
print(solu.function())
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/monamania/leetcode_algorithm_plus.git
git@gitee.com:monamania/leetcode_algorithm_plus.git
monamania
leetcode_algorithm_plus
LeetCode_Algorithm_Plus
master

搜索帮助

Cb406eda 1850385 E526c682 1850385