using System; using System.Collections.Generic; namespace ConsoleApp2 { class Program { static void Main(string[] args) { App app = new App(); app.Use ...
分类:
Web程序 时间:
2020-06-16 23:23:04
阅读次数:
83
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Data; namespace MSCTool { p ...
分类:
编程语言 时间:
2020-06-16 23:16:15
阅读次数:
102
https://www.cnblogs.com/dream-game/p/5532506.html using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T... ...
package LeetCode_787 import java.util.* import kotlin.collections.ArrayList import kotlin.collections.HashMap /** * 787. Cheapest Flights Within K Sto ...
分类:
其他好文 时间:
2020-06-16 13:25:15
阅读次数:
58
第1关:继承 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace K1 { public abstr ...
1.Postman的介绍 Postman是一款功能强大的用于发送 HTTP 请求的 Chrome插件 。做web页面开发和测试的人员应该都知道!其主要特点:创建 + 测试:创建和发送任何的HTTP请求,请求可以保存到历史中再次执行;Organize:使用Postman Collections为更有效 ...
分类:
其他好文 时间:
2020-06-15 21:00:24
阅读次数:
57
import collections import random Card = collections.namedtuple("Card", ["rank", "suit"]) class FrenchDeck: ranks = ["A"] + [str(n) for n in range(2, 1 ...
分类:
其他好文 时间:
2020-06-15 17:29:29
阅读次数:
64
第1关:结构函数 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace H1 { class Prog ...
第1关:写一个函数 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace G1 { class Pro ...
1 //模拟斗地主发牌洗牌 2 3 //导包 4 5 import java.util.ArrayList; 6 import java.util.Collections; 7 import java.util.HashMap; 8 9 public class Test { 10 public s ...
分类:
编程语言 时间:
2020-06-15 14:23:46
阅读次数:
72