Springboot + Mybatis 基本姿势最近做了个CS5224 Cloud Computing的课程项目,由于前端打算做个Android App,后端为了统一也就选用了Java开发。 项目团队的地址在 https://github.com/nus-cs5224-team/; 极速入门了一波 Springboot,Mybatis,复习了一波 SQL,感觉还是开发比较快乐; 基本框架目录结构main ├─java ...
未命名
Linear RegressionAssume the model is: \hat{y} = f(x) = X\betaWe can write a base class using this formula for our linear regression implement below, class LinearRegressionBase: def __init__(self): # beta: shape (p, 1) self.beta = None def fit(self, X, y): # X: shape (n, p ...
LeetCode 11. Container With Most Water
题目链接给到 https://leetcode-cn.com/problems/container-with-most-water/ 给定 n 个非负整数$a_1, a_2, … ,a_n$,每个数代表坐标中的一个点$(i, a_i)$ 。在坐标内画 n 条垂直线,垂直线 $i$ 的两个端点分别为 $(i, ai)$ 和 $(i, 0)$。找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。 说明:你不能倾斜容器,且 n 的值至少为 2。 图中垂直线代表输入数组 [1,8,6,2,5,4,8,3,7]。在此情况下,容器能够容纳水(表示为蓝色部分)的最大值为 49。 示例: 输 ...
alias 如何带参数
比如我要使用python的虚拟环境,我想要激活一个叫做 flask36 的环境,每次都要使用 source flask36/bin/activate 好麻烦,所以使用了一个alias来简化这个操作 alias ac='source flask36/bin/activate' 然后输入ac就可以了 但是这样的话,当使用其他环境时就不能用这个命令了 所以想要带个参数,直接用又不行,因为这个flask36这个东西要放在中间 所以研究了一下,可以这样用 alias ac='func() { source $1/bin/activate; }; func' 然后就可以带参数了,比如: ...
Leetcode 206. Reverse Linked List
题目Reverse a singly linked list. Example: Input: 1->2->3->4->5->NULLOutput: 5->4->3->2->1->NULL Follow up: A linked list can be reversed either iteratively or recursively. Could you implement both? 简单来说,将一个链表反转过来(还推荐使用迭代和递归两种方法来实现) 题解迭代法代码/** * Definition for singly-link ...