搜索结果
查询Tags标签: ret,共有 415条记录-
REST Framework 分页
DRF使用分页器 分页模式 rest framework中提供了三种分页模式: from rest_framework.pagination import PageNumberPagination, LimitOffsetPagination, CursorPagination全局配置 settingt.py REST_FRAMEWORK = {DEFAULT_PAGINATION_CLASS: rest_framework.pagination.P…
2021/12/24 6:07:47 人评论 次浏览 -
REST Framework 分页
DRF使用分页器 分页模式 rest framework中提供了三种分页模式: from rest_framework.pagination import PageNumberPagination, LimitOffsetPagination, CursorPagination全局配置 settingt.py REST_FRAMEWORK = {DEFAULT_PAGINATION_CLASS: rest_framework.pagination.P…
2021/12/24 6:07:47 人评论 次浏览 -
Leetcode Java_子序列
子序列 402. 移掉 K 位数字402. 移掉 K 位数字 Leetcode class Solution {public String removeKdigits(String num, int k) {// 使用栈删除 x (<=k) 个元素Deque<Character> deque = new LinkedList<Character>();int n = num.length(); for (int i …
2021/12/23 20:08:56 人评论 次浏览 -
Leetcode Java_子序列
子序列 402. 移掉 K 位数字402. 移掉 K 位数字 Leetcode class Solution {public String removeKdigits(String num, int k) {// 使用栈删除 x (<=k) 个元素Deque<Character> deque = new LinkedList<Character>();int n = num.length(); for (int i …
2021/12/23 20:08:56 人评论 次浏览 -
python发送qq邮件
#!/usr/bin/python3 import smtplib from email.mime.text import MIMEText from email.utils import formataddr my_sender=1638245306@qq.com # 发件人邮箱账号 my_pass = xxxxxx # 发件人邮箱密码(注意这个密码不是QQ邮箱的密码,是在QQ邮箱的SMTP中生成的授权码) m…
2021/12/23 17:37:05 人评论 次浏览 -
python发送qq邮件
#!/usr/bin/python3 import smtplib from email.mime.text import MIMEText from email.utils import formataddr my_sender=1638245306@qq.com # 发件人邮箱账号 my_pass = xxxxxx # 发件人邮箱密码(注意这个密码不是QQ邮箱的密码,是在QQ邮箱的SMTP中生成的授权码) m…
2021/12/23 17:37:05 人评论 次浏览 -
Binary Tree Level Order Traversal LeetCode二叉树层序遍历 JavaScript解法
原题链接在此:https://leetcode.com/problems/binary-tree-level-order-traversal/ Given the root of a binary tree, return the level order traversal of its nodes values. (i.e., from left to right, level by level). 给你一个二叉树,请你返回其按 层序遍历 得到…
2021/12/22 20:22:02 人评论 次浏览 -
Binary Tree Level Order Traversal LeetCode二叉树层序遍历 JavaScript解法
原题链接在此:https://leetcode.com/problems/binary-tree-level-order-traversal/ Given the root of a binary tree, return the level order traversal of its nodes values. (i.e., from left to right, level by level). 给你一个二叉树,请你返回其按 层序遍历 得到…
2021/12/22 20:22:02 人评论 次浏览 -
Visiual Studio:用C编写简易猜数字游戏
注意:随机数要在循环外部生成 //猜数字游戏 void menu() {printf("#######################\n");printf("######1. #######\n");printf("######2. #######\n"); } void game() {int ret = rand()%100+1;int guess = 0;whil…
2021/12/22 6:23:39 人评论 次浏览 -
Visiual Studio:用C编写简易猜数字游戏
注意:随机数要在循环外部生成 //猜数字游戏 void menu() {printf("#######################\n");printf("######1. #######\n");printf("######2. #######\n"); } void game() {int ret = rand()%100+1;int guess = 0;whil…
2021/12/22 6:23:39 人评论 次浏览 -
Linux网络编程之UDP Socket(二)
先看效果 程序会将收到的信息又发送给对端 流程程序源码 #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <errno.h> #include <sys/socket.h> #include <arpa/inet.h> #define H…
2021/12/21 7:23:03 人评论 次浏览 -
Linux网络编程之UDP Socket(二)
先看效果 程序会将收到的信息又发送给对端 流程程序源码 #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <errno.h> #include <sys/socket.h> #include <arpa/inet.h> #define H…
2021/12/21 7:23:03 人评论 次浏览 -
日期---
文章目录 Date.cppDate.hTest.cpp#include<iostream> using namespace std; class Date { public://获取一个月中的天数int GetMonthDay(int year,int month);//构造函数,不要在你的声明和定义中同时写入缺省值Date(int year, int month, int day);//拷贝构造函数D…
2021/12/20 23:22:27 人评论 次浏览 -
日期---
文章目录 Date.cppDate.hTest.cpp#include<iostream> using namespace std; class Date { public://获取一个月中的天数int GetMonthDay(int year,int month);//构造函数,不要在你的声明和定义中同时写入缺省值Date(int year, int month, int day);//拷贝构造函数D…
2021/12/20 23:22:27 人评论 次浏览 -
uibot小作业:检测并输出在科创板审核网站无法搜索到有关公司的证券简称
目录 知识点代码块知识点 1、txt文件读取,分行遍历 2、浏览器调用 3、JS调用:获取对象及其文本 Tips:console测试JS;源代码中不含动态元素; 代码块 function(){ x=document.getElementById("zeroRecordDiv_stock_list") if (x!=null) {return x.textConten…
2021/12/19 23:49:59 人评论 次浏览