08 2021 档案

摘要:1.反转链表 /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solu 阅读全文
posted @ 2021-08-21 23:01 飞鸟迷失天空 阅读(36) 评论(0) 推荐(0)
摘要:1.判断某字符串是不是一个IP地址 package testCoding; import java.util.Scanner; public class JudgeIP { public static void main(String args[]){ //输入一个待判定的ip字符串 System. 阅读全文
posted @ 2021-08-19 21:29 飞鸟迷失天空 阅读(382) 评论(0) 推荐(0)
摘要:1.实现第一个自动化测试入门案例: package autoTestE; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; public class FirstAutoTest 阅读全文
posted @ 2021-08-17 19:01 飞鸟迷失天空 阅读(571) 评论(0) 推荐(0)