Community Profile

photo

Radkhan Sarmukhanov


Last seen: 2 years ago|Active since 2019

Statistics

  • Leader
  • 评论者
  • 求解器

查看徽章

Content Feed

查看

解决了


Molecule Atomic Wt (CHONS) Molecules
给定分子方程式串确定其原子量。c h o n和s的有限原子,其中wts被舍入到[12 1 ...

3 years ago

解决了


分析字符串并识别代数方程中的特定字符串序列
Given a string S that defines an algebraic expression such as: S= 'X= A1 + A2*(Y1 + A3*Y3)*exp( A4*Y12 + Y1) ;' return a...

3 years ago

解决了


计算文本中的字母出现,特定于给定长度的单词。
Build a function with two input arguments: a string and a word length (number of letters), that outputs a vector of counts of th...

3 years ago

解决了


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

3 years ago

解决了


convert?
*给定一个包含数字的绳子,然后是磅或公斤,例如: *“比利在四个星期内减掉了22磅。”*'玛丽亚...

3 years ago

解决了


英語の文章内の母音を取り除くコードを書きましょう。
与えられた英語の文章内の母音を取り除きましょう。 例: 入力 s1 が 'Jack and Jill went up the hill' の場合、 出力 s2 は 'Jck nd Jll wnt p th hll' * (英語版) ...

3 years ago

解决了


Vectorizing, too easy or too hard?
请插入一个。在字符串中进行任何 ^, *或 / / / / / /。而已!!

3 years ago

解决了


那个进球是什么时候得分的?
我们想找出何时在特定足球比赛中得分。对于每个游戏,我们都会获得“目标事件数据” XML ...

3 years ago

解决了


不允许_________ ...
因此,您给您一个句子,如果句子中有一个特定的单词,则输出为1,如果不存在,则...

3 years ago

解决了


Reverse the Words (not letters) of a String
*说明*更改字符串的单词,使单词以相反的顺序出现。您可能会假设字符串为n ...

3 years ago

解决了


I Plead the Fifth
Write a function to provide a yes or no answer to the input string. However, it must plead the 5th amendment (return an empty st...

3 years ago

解决了


Get the area codes from a list of phone numbers
给定一串带有电话号码的文本,返回区域代码的独特单元字符串。S ='508-6 ...

3 years ago

解决了


Replace May with April
例如,如果输入为input_str ='花可能会在四月开花';然后输出为output_str ='flo ...

3 years ago

解决了


Alphabetize by last name
Given a list of names in a cell array, sort the list by the last name. So if list = {'Barney Google','Snuffy Smith','Dagwood ...

3 years ago

解决了


测试平衡括号
Given the input inStr, give the boolean output out indicating whether all the parentheses are balanced. Examples: * If ...

3 years ago

解决了


Remove all the words that end with "ain"
给定字符串S1,返回字符串S2并删除目标字符。例如,给定S1 ='主事件'您...

3 years ago

解决了


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

3 years ago

解决了


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

3 years ago

解决了


Find the longest sequence of 1's in a binary sequence.
给定一个字符串,如年代= 011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

3 years ago

解决了


删除所有辅音
删除所有辅音in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

3 years ago

解决了


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

3 years ago

解决了


找到输入向量的所有数字的总和
找到输入向量X的所有数字的总和。示例:输入x = [1 2 3 5]输出y是11输入x ...

3 years ago

解决了


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

3 years ago

解决了


Add more zeros
Find code that adds one 0 to each sequence of 0 in a string (composed with only 0 or 1). For example: '1010' -> '100100' ...

3 years ago

解决了


Ordinal numbers
Given an integer n, return the corresponding ordinal number as a character string. For example, ord(1)='1st' ord(2)=...

3 years ago

解决了


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

3 years ago

解决了


Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...

3 years ago

解决了


猜猜密码
猜猜要改变字符串的公式如下:“你好!”- >'ifmmp xpsme!''我可以帮你吗?'- >'dbo j ifmq zpv ...

3 years ago

解决了


Add two numbers
Given a and b, return the sum a+b in c.

3 years ago