北晨LPL
北晨LPL
全部文章
题解
归档
标签
去牛客网
登录
/
注册
北晨LPL的博客
全部文章
/ 题解
(共3篇)
最长回文子串(Python)
# -*- coding:utf-8 -*- class Palindrome: def getstr(self,A,n): re = [] for i in range(n): for j in range(i + 1,n + 1)...
面向对象
Python
2020-08-25
2
799
取近似值(Python面向对象编程实现)
from math import ceil #引入math.ceil(x) class Sloution : #定义类Sloution def __init__(self,num) : #定义构造方法 self.num = num def pa...
面向对象
Python
2020-07-05
7
998
找零(c++和python(面向对象))
c++ #include<iostream> using namespace std; int main() { int n,a = 1,b = 1,c = 1,d = 1,sum = 0; cin>>n; n = 1024 - n; a = ...
面向对象
Python
c++
2020-06-21
6
1104