csharp基础练习题:乘以字符串数组中【难度:1级】:
你有两个字符串中接收到的数组.
创建将返回他们的产品作为一个字符串的函数.
例如.
arrMultiply([ '9', '6'])应该返回 '54'
arrMultiply([ '9', '6'])应该返回 '54'
Kata.ArrMultiply(新的字符串[] { "9", "6"})=> "54"
编程目标:
using System;
public static class Kata
{
public static string ArrMultiply(string[] arr)
{
throw new NotImplementedException();
}
}
测试样例:
namespace Solution
{
using NUnit.Framework;
using System;
using System.Collections.Generic;
[TestFixture]
public class BasicTest
{
{
get
{
yield return new TestCaseData(new [] {new string[] {"4", "5"}}).Returns("20");
yield return new TestCaseData(new [] {new string[] {"2", "-5"}}).Returns("-10");
yield return new TestCaseData(new [] {new string[] {"9", "0"}}).Returns("0");
}
}
最佳答案(多种解法):
更多关联题目:
免责申明
本博客所有编程题目及答案均收集自互联网,主要用于供网友学习参考,如有侵犯你的权益请联系管理员及时删除,谢谢
题目收集至https://www.codewars.com/
https://www.codewars.com/kata/multiply-the-strings-in-the-array