摘要:
后台Python代码 #!/usr/bin/python3 # *-* coding:utf-8 *-* import random import time from tornado.websocket import WebSocketHandler from tornado.web import 阅读全文
摘要:
Oracle的分页查询 select * from (select t.*,rownum rn from tableName t) o where o.rn between firstIndex and lastIndex; 其中rownum 是oracle分页的关键字,是一个虚拟字段,将查到的数据 阅读全文
摘要:
// 在整数数组B中寻找所有在整数数组A中不存在的元素(只能使用原生js不使用数组对象的方法) let A = [2, 18, 75, 11, 135, 472] let B = [3, 75, 66, 93, 135] // 最终结果 let resArr = [] // 排序 function 阅读全文