Leetcode刷题100天—2023. 连接后等于目标字符串的字符串对(数组)—day55

Posted 神的孩子都在歌唱

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题100天—2023. 连接后等于目标字符串的字符串对(数组)—day55相关的知识,希望对你有一定的参考价值。

前言:

作者:神的孩子在歌唱

大家好,我叫运智

2023. 连接后等于目标字符串的字符串对

难度中等1

给你一个 数字 字符串数组 nums 和一个 数字 字符串 target ,请你返回 nums[i] + nums[j] (两个字符串连接)结果等于 target 的下标 (i, j) (需满足 i != j)的数目。

示例 1:

输入:nums = ["777","7","77","77"], target = "7777"
输出:4
解释:符合要求的下标对包括:
- (0, 1):"777" + "7"
- (1, 0):"7" + "777"
- (2, 3):"77" + "77"
- (3, 2):"77" + "77"

示例 2:

输入:nums = ["123","4","12","34"], target = "1234"
输出:2
解释:符合要求的下标对包括
- (0, 1):"123" + "4"
- (2, 3):"12" + "34"

示例 3:

输入:nums = ["1","1","1"], target = "11"
输出:6
解释:符合要求的下标对包括
- (0, 1):"1" + "1"
- (1, 0):"1" + "1"
- (0, 2):"1" + "1"
- (2, 0):"1" + "1"
- (1, 2):"1" + "1"
- (2, 1):"1" + "1"

提示:

  • 2 <= nums.length <= 100
  • 1 <= nums[i].length <= 100
  • 2 <= target.length <= 100
  • nums[i]target 只包含数字。
  • nums[i]target 不含有任何前导 0 。
package leetcode周赛;
/*
 * 给你一个 数字 字符串数组 nums 和一个 数字 字符串 target ,请你返回 nums[i] + nums[j] 
 * (两个字符串连接)结果等于 target 的下标 (i, j) (需满足 i != j)的数目。

 /
 */
public class 双周赛二_62 
    public int numOfPairs(String[] nums, String target) 
    	int num=0;
    	for(int i=0;i<nums.length-1;i++) 
    		for(int j=i+1;j<nums.length;j++) 
    			if (target.equals(nums[i]+nums[j])&&nums[i]!=nums[j]) 
					num++;
					if (target.equals(nums[j]+nums[i])) 
						num++;
					
					continue;
				
    			if (target.equals(nums[j]+nums[i])&&nums[i]!=nums[j]) 
					num++;
					if (target.equals(nums[i]+nums[j])) 
						num++;
					
					continue;
				
    		
    	
    	return num;
    

本人csdn博客:https://blog.csdn.net/weixin_46654114

转载说明:跟我说明,务必注明来源,附带本人博客连接。

以上是关于Leetcode刷题100天—2023. 连接后等于目标字符串的字符串对(数组)—day55的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题100天—165. 比较版本号( 双指针)—day25

Leetcode刷题100天—165. 比较版本号( 双指针)—day25

Leetcode刷题100天—705. 设计哈希集合(集合)—day74

Leetcode刷题100天—70. 爬楼梯(动态规划)—day76

Leetcode刷题100天—226. 翻转二叉树(二叉树)—day03

Leetcode刷题100天—226. 翻转二叉树(二叉树)—day03