摘要:
个人介绍:本人低分复旦上岸,初试倒数第二。 本科是浙江某双非,科班非跨考,16年浙江高考理科610分,我这种水平在复旦生源中算是垫底水平。大学期间打过acm吧,只有区预赛铜,邀请赛银。属实彩笔。 首先不得不说复旦对报考的学生真的很友好。因为不要外校的调剂,所以今年比较好上(可能去年神仙打架+9月改课 阅读全文
摘要:
1.鸢尾花数据集再介绍: 鸢尾花数据集共有数据150组 每组包括花萼长、花萼宽、花瓣长、花瓣宽4个输入特征 同时给出了每一组特征对应的鸢尾花类别类别包括SetosaIris(狗尾草鸢尾),VersicolourIris(杂色鸢尾),VirginicaIris(弗吉尼亚鸢尾)三类,分别用数字0,1,2 阅读全文
摘要:
张量表示数据,用计算图搭建神经网络,用会话执行计算图,优化线上的权重(参数)->得到模型。 张量(tensor):多维数组(列表) 阶:张量的维数。 数据类型: tf.float32 tf.int32 bool string 创建张量的4种方式 1. Constant(恒定,在应用中该类型的变量通常 阅读全文
摘要:
1014. 最佳观光组合 a[i]+a[j]-(j-i)=a[i]+i-a[j]-j j要比i大,enmerate 使数组变成类似于字典 class Solution(object): def maxScoreSightseeingPair(self, A): mx=float('-inf') zo 阅读全文
摘要:
每日一题:二叉树的序列化与反序列化 https://leetcode-cn.com/problems/serialize-and-deserialize-binary-tree/ class Codec: def serialize(self, root): """Encodes a tree to 阅读全文
摘要:
https://leetcode-cn.com/problems/longest-common-prefix/每日一题 class Solution(object): def longestCommonPrefix(self, strs): n = len(strs) ans = '' j = 0 阅读全文
摘要:
每日一题https://leetcode-cn.com/problems/sum-of-mutated-array-closest-to-target/submissions/ 首先查找问题不难想到二分法,二分法的判断函数也非常简单,就是计算满足条件的数组元素和sum和target的关系。定义左右边 阅读全文
摘要:
每日一题https://leetcode-cn.com/problems/climbing-stairs/ 爬楼梯,递归 class Solution(object): def climbStairs(self, n): num=[0,1,2] if(n==1): return 1 if(n==2) 阅读全文
摘要:
class Solution(object): def threeSum(self, nums): res_list=[] nums.sort() for i in range(len(nums)): if(nums[i]>0): break if i>0 and nums[i]==nums[i-1 阅读全文
摘要:
回文数https://leetcode-cn.com/problems/palindrome-number/ class Solution(object): def isPalindrome(self, x): xx=str(x) if(xx==xx[::-1]): return True else 阅读全文