菜鸡还没有找到工作(DAY48)

sql 复制代码
select t2.staff_id,t1.staff_name
from cultivate_tb t2
left join staff_tb t1
on t2.staff_id=t1.staff_id
where t2.course like '%course3%'
order by t2.staff_id
sql 复制代码
with t as
(
    select t1.rec_user
    from recommend_tb t1
    left join user_action_tb t2
    on t1.rec_user=t2.user_id
    where t1.rec_info_l=t2.hobby_l
)
select avg(score) as svg_score
from user_action_tb
where user_id
in (select rec_user from t)
java 复制代码
import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param m int整型 
     * @param n int整型 
     * @return int整型
     */
    public int uniquePaths (int m, int n) {
        // write code here
        if(m==1||n==1)
        {
            return 1;
        }
        return uniquePaths(m,n-1)+uniquePaths(m-1,n);
    }
}
java 复制代码
import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param matrix int整型二维数组 the matrix
     * @return int整型
     */
    public int minPathSum (int[][] matrix) {
        // write code here
        int m=matrix.length;
        int n=matrix[0].length;
        int[][] re=new int[m][n];
        re[0][0]=matrix[0][0];
        for(int i=1;i<m;i++)
        {
            re[i][0]=re[i-1][0]+matrix[i][0];
        }
        for(int i=1;i<n;i++)
        {
            re[0][i]=re[0][i-1]+matrix[0][i];
        }
        for(int i=1;i<m;i++)
        {
            for(int j=1;j<n;j++)
            {
                re[i][j]=Math.min(re[i-1][j],re[i][j-1])+matrix[i][j];
            }
        }
        return re[m-1][n-1];
    }
}
相关推荐
代码or搬砖15 小时前
MyBatisPlus中的常用注解
数据库·oracle·mybatis
盼哥PyAI实验室16 小时前
MySQL 数据库入门第一课:安装、账户、库、表与数据操作详解
数据库·mysql
h***593317 小时前
MySQL如何执行.sql 文件:详细教学指南
数据库·mysql
郑重其事,鹏程万里17 小时前
键值存储数据库(chronicle-map)
数据库·oracle
Doro再努力17 小时前
【MySQL数据库09】外键约束与多表查询基础
数据库·mysql
ss27318 小时前
019:深入解析可重入互斥锁:原理、实现与线程安全实践
java·数据库·redis
高级程序源18 小时前
springboot社区医疗中心预约挂号平台app-计算机毕业设计源码16750
java·vue.js·spring boot·mysql·spring·maven·mybatis
O***Z61618 小时前
三分钟内快速完成MySQL到达梦数据库的迁移
数据库·mysql
友友马19 小时前
『QT』窗口 (一)
开发语言·数据库·qt
q***783719 小时前
SQL实现md5加密方法
数据库·sql