码迷,mamicode.com
首页 >  
搜索关键字:assume    ( 1858个结果
Merge Sorted Array
Description Given two sorted integer arrays A and B, merge B into A as one sorted array. You may assume that A has enough space (size that is greater ...
分类:其他好文   时间:2020-05-13 12:04:16    阅读次数:68
392. Is Subsequence
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:其他好文   时间:2020-05-11 13:14:30    阅读次数:81
【LeetCode 1. Two Sum】
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex ...
分类:其他好文   时间:2020-04-21 18:36:52    阅读次数:67
汇编语言第三版(王爽)实验七
实验内容 计算结果 汇编代码 assume cs:codesg,ds:datadata segment db '1975','1976','1977','1978','1979','1980','1981','1982','1983' db '1984','1985','1986','1987',' ...
分类:编程语言   时间:2020-04-19 10:38:31    阅读次数:339
【中等】5-最长回文子串 Longest Palindromic Substring
题目 Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. 给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s ...
分类:其他好文   时间:2020-04-15 18:30:58    阅读次数:59
Pytest系列(15)- 多重校验插件之pytest-assume的详细使用
如果你还想从头学起Pytest,可以看看这个系列的文章哦! https://www.cnblogs.com/poloyy/category/1690628.html 前言 pytest中可以用python的assert断言,也可以写多个断言,但一个失败,后面的断言将不再执行 安装插件 pip3 in ...
分类:其他好文   时间:2020-04-15 13:56:27    阅读次数:661
455. Assign Cookies
Problem : Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child ...
分类:其他好文   时间:2020-04-14 18:27:41    阅读次数:69
王爽 汇编 进位加法
一、要求 ;编程计算1EF000H+201000H,结果放在ax(高16位)和bx(低16位)中 二、代码实现 1 assume cs:code 2 3 code segment 4 start: mov ax,001eh ;高16位 5 mov bx,0f000h ;低16位 6 add bx,1 ...
分类:其他好文   时间:2020-04-07 09:44:11    阅读次数:68
王爽 汇编 实验10.1
一、实验要求 二、代码实现 1 assume cs:code,ds:data 2 3 data segment 4 db 'welcome to masm!',0 5 data ends 6 7 code segment 8 start: mov dh,8 ;定义行(0-24) 9 mov dl,3 ...
分类:其他好文   时间:2020-04-01 14:49:13    阅读次数:57
异常排查_Python.[alembic.env] No changes in schema detected?
问题复现: INFO [alembic.runtime.migration] Context impl SQLiteImpl. INFO [alembic.runtime.migration] Will assume non-transactional DDL. INFO [alembic.env] ...
分类:编程语言   时间:2020-03-30 12:45:45    阅读次数:84
1858条   上一页 1 2 3 4 5 6 ... 186 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!