- 博客(26)
- 收藏
- 关注
原创 蚂蚁国际2023届实习生招聘内推
简述版蚂蚁集团国际事业群实习生招聘开启啦, 对象为2022.11-2023.10应届毕业生招聘算法、开发、测开工程师,地点有 杭州、深圳、成都、深圳、新加坡这里有大量福利,发展蓝海,转正机会,优秀的同行,超多技术论坛等等可直接联系 qinli.xql@antgroup.com 或 152****0535 内推福利在文末!!!职位JD测试开发工程师职位描述我们,捍卫阿里巴巴产品的用户体验! 我们,梦想做世界级的高效质量团队! 我们,推行担当、创新、共赢的文化! 五新战略下的复杂业务场景执行的
2022-03-13 15:48:03
338
原创 boss直聘自定义筛选条件,批量发送消息
function judgejiaoji(arr1,arr2){ for (var i = 0;i<arr1.length;i++){ for(var j = 0;j<arr2.length;j++){ if(arr1[i] == arr2[j]){ return true }
2020-07-15 17:39:55
3635
原创 java入门
1 helloworld前提:本地安装java程序public class helloWorld { public static void main(String[] args) { System.out.println(“hello world”); } }脚本的名字为helloWorld.java编译:javac helloWorld.java运行:java helloWorld运行结果:hello world...
2020-05-18 22:22:20
177
原创 二维码的原理
https://blog.youkuaiyun.com/u012611878/article/details/53167009二维码又可以分为正扫 反扫
2020-05-15 14:37:04
229
原创 magicdict重写python dict 对文件读写dict
import osimport jsonclass MagicDict(dict): """ dict重载 """ def __init__(self, config_file=None): self.config_file = config_file self.config_dict = {} if conf...
2020-02-12 17:47:06
480
原创 html 入门
参考资料:https://www.runoob.com/html/html-tutorial.html线上查看html 效果:https://www.runoob.com/try/try.php?filename=tryhtml_intro<!DOCTYPE html><html><head><meta charset="utf-8">&...
2019-08-26 17:34:19
578
转载 转写接口脚本
转:https://blog.youkuaiyun.com/songlh1234/article/details/83381642依赖工具:flask发请求的工具可以用chrome-extension://aejoelaoggembcahagimdiliamlcdmfm/restlet_client.html
2019-07-27 21:52:20
284
转载 mpi 程序示例
#include <stdio.h>#include "mpi.h"int main(int argc, char *argv[]){ int rank, value, size; MPI_Status status; MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &a...
2019-05-17 15:03:12
1501
原创 分布式系统-异步
异步的作用发挥多线程的作用,提高时间效率异步的设计判读等待处理的时间 > 创建销毁切换线程的时间同步-异步的区别相同点:都可以使用请求-响应模型 不同点:同步:立即知道结论,rpc调用配合短链接做到对连接资源的用完即放异步:保持连接的时间要更长一些,至少需要回调触发完成以后异步 发起请求的线程和接收响应的线程不是同一个,所以线程上下文是不连续的异步 虽然请求的顺序是客户端...
2019-05-13 10:05:06
914
转载 转:大数据计算框架mpi、hadoop、spark的区别
https://blog.youkuaiyun.com/claire7/article/details/46848757
2019-02-21 19:33:30
593
原创 Latex diagram的问题
Latex画程序框图推荐网站:http://www.texample.net/tikz/examples画程序框图
2016-12-22 12:24:04
2157
原创 Top K Frequent Elements——出现频次最多的k个数
问题描述: Given a non-empty array of integers, return the k most frequent elements.For example,
2016-10-07 19:26:25
327
原创 Isomorphic Strings——同构结构判断
问题描述:求两个字符串是否同构 Given two strings s and t, determine if they are isomorphic.
2016-10-07 19:01:11
392
转载 算法:位操作总结
https://discuss.leetcode.com/topic/50315/a-summary-how-to-use-bit-manipulation-to-solve-problems-easily-and-efficiently位操作算法总结
2016-09-16 21:48:00
410
原创 Intersection of Two Arrays--求两个向量的交集
问题描述: Given two arrays, write a function to compute their intersection.Example: Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2].Note: Each element in the result must be unique.
2016-09-09 10:54:51
1548
原创 C++ STL初探及string、vector学习
STL(模板库)STL = Standard Template Library,标准模板库,这篇博客对STL有个初步的认识,再详细介绍里面string和vector的用法。
2016-08-25 19:58:35
541
原创 Counting Bits——计数
###问题描述Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representation and return them as an array.
2016-08-25 16:22:22
287
原创 Find the Duplicate Number--重复数字问题
Given an array nums containing n+1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate number must exist. Assume that there is only one duplicate number, find the dupli
2016-08-24 10:17:31
515
原创 c++ 字符串反转问题
问题出自https://leetcode.com/problems/reverse-string/ 上述是一个很好的学习编程的网站Write a function that takes a string as input and returns the string reversed.Example:Given s = "hello", re
2016-08-23 09:56:32
1448
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人