码迷,mamicode.com
首页 >  
搜索关键字:anything    ( 347个结果
Selection Sort
Given an array of integers, sort the elements in the array in ascending order. The selection sort algorithm should be used to solve this problem. Exam ...
分类:其他好文   时间:2019-09-22 10:56:30    阅读次数:67
75.颜色分类
class Solution: def sortColors(self, nums: List[int]) -> None: """ Do not return anything, modify nums in-place instead. """ head, now, tail = 0, 0, l... ...
分类:其他好文   时间:2019-09-16 21:25:05    阅读次数:103
How are you to imagine anything if the images are always provided for you?
perdestrian: n. 行人 compliment: n. 赞扬 simply: adv. 只是,仅仅 shorten: vt. 缩短 accustom: vt. 习惯 collide: v. 碰撞、抵制 invariably: adv. 一贯地 agony: n. 极度痛苦 mop: n. ...
分类:其他好文   时间:2019-09-04 00:21:50    阅读次数:142
CMPSC311 - Block Cache
Assignment #4 - Block CacheCMPSC311 - Introduction to SystemsProgrammingSummer 2019 - Prof. McDanielDue date: August 5, 2019 (11:59pm)OverviewIn this ...
分类:系统相关   时间:2019-08-01 19:59:47    阅读次数:156
maven的安装与配置
1. Maven简单介绍Apache Maven是个项目管理和自动构建工具,基于项目对象模型(POM)的概念。作用:完成项目的相关操作,如:编译,构建,单元测试,安装,网站生成和基于Maven部署项目。 2. Maven安装与配置 2.1 下载maven安装包,解压即可使用http://maven. ...
分类:其他好文   时间:2019-07-24 13:27:35    阅读次数:1886
leetcode-48-旋转图像
题目描述: 方法一:先转置再反转 方法二: 方法三: ...
分类:其他好文   时间:2019-07-12 11:15:29    阅读次数:90
leetcode1089
1 class Solution: 2 def duplicateZeros(self, arr: List[int]) -> None: 3 """ 4 Do not return anything, modify arr in-place instead. 5 """ 6 n = len(arr ...
分类:其他好文   时间:2019-06-16 13:15:48    阅读次数:87
视觉编码(Visual Encoding)
视觉编码(Visual Encoding) There are two types of visual encoding variables: planar and retinal. 数据类型: 数量(quantitative) Anything that has exact numbers. Fo ...
分类:其他好文   时间:2019-06-16 00:26:27    阅读次数:134
CMPT 454 Project Milestone
CMPT 454 Project Milestone 1: Buffer PoolTotal marks: Total marks: 100Overall percentage: Overall percentage: 16%Due:: Jun 11 (23:59)In this project m ...
分类:其他好文   时间:2019-06-12 19:29:04    阅读次数:76
spring-security-oauth2注解详解
spring security oauth2支持的注解有: 1.EnableOAuth2Client 适用于使用spring security,并且想从Oauth2认证服务器来获取授权的web应用环境代码中,它启用了一个Oauth2 客户端配置。为了更好的利用这个特性,需要在客户端应用中的Deleg ...
分类:编程语言   时间:2019-06-12 15:08:12    阅读次数:128
347条   上一页 1 ... 3 4 5 6 7 ... 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!