ICode9

精准搜索请尝试: 精确搜索
  • 2020 408 数据结构 算法题2022-07-17 11:04:10

    #include<iostream> using namespace std; void solution(int a[], int aLength, int b[], int bLength, int c[], int cLength) { int res[3] = { a[0],b[0],c[0] }; int i = 0, j = 0, k = 0; while (i < aLength && j < bLength &&

  • pyusb打印的device信息案例2021-12-12 22:31:34

    DEVICE ID 12d1:107e on Bus 002 Address 002 =================  bLength                :   0x12 (18 bytes)  bDescriptorType        :    0x1 Device  bcdUSB                 :  0x210 USB 2.1  bDeviceClass           :    0x0 S

  • 常考面试题之两个字符串相加(长整数相加)C#版2021-01-20 16:01:04

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wsy { class Program { static void Main(string[] args) { string a = Console.ReadLine();

  • linux command lsusb2020-09-10 14:31:48

    【Purpose】        Learning linux command  lsusb 【Eevironment】        Ubuntu 16.04 terminal    【Produce】 vmuser@vmuser-VirtualBox:~$ lsusb -D /dev/bus/usb/001/003 Device: ID 0951:1666 Kingston Technology DataTraveler G4 Couldn't open dev

  • LeetCode | 67. 二进制求和2020-04-08 11:59:12

    给你两个二进制字符串,返回它们的和(用二进制表示)。 输入为 非空 字符串且只包含数字 1 和 0。 示例 1: 输入: a = "11", b = "1" 输出: "100" 示例 2: 输入: a = "1010", b = "1011" 输出: "10101" 提示: 每个字符串仅由字符 '0' 或 '1' 组成。 1 <= a

  • LeetCode 672020-02-03 18:42:29

    题目 给定两个二进制字符串,返回他们的和(用二进制表示)。 输入为非空字符串且只包含数字 1 和 0。 示例 1: 输入: a = “11”, b = “1” 输出: “100” 示例 2: 输入: a = “1010”, b = “1011” 输出: “10101” 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/ad

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有