Difference between revisions of "Z3/Z3Clarifications"

From ZCubes Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
*[[ Z%5E3_Language_Documentation | Z3 Language Documentation]]
 
*[[ Z%5E3_Language_Documentation | Z3 Language Documentation]]
  
List clarifications required on Z3
+
Clarifications on Z3
  
How do we get a subset of a string value without using loop
 
  
Ans:
+
Q 24. In how many different ways can the letters of the word 'CORPORATION' be arranged so that the vowels always come together?
  
word = "CORPORATION";
+
How do we get a subset of a string value without using loop
vowels ="AEIOU";
+
Ans:
vowelsarray=vowels.split("");
+
word = "CORPORATION";
wordletterswithoutvowels=word.split("").filter((x)=>!x.isin(vowelsarray));  
+
vowels ="AEIOU";
OR
+
vowelsarray=vowels.split("");
IsNotAVowel:=!x.isin(vowelsarray);
+
wordletterswithoutvowels=word.split("").filter((x)=>!x.isin(vowelsarray));  
word.split("").filter(IsNotAVowel);
+
OR
OR
+
IsNotAVowel:=!x.isin(vowelsarray);
IsNotAVowel:=!x.isin("AEIOU".split(""));
+
word.split("").filter(IsNotAVowel);
word.split("").filter(IsNotAVowel);
+
OR
 
+
IsNotAVowel:=!x.isin("AEIOU".split(""));
Result => CRPRTN
+
word.split("").filter(IsNotAVowel);
 +
Result => CRPRTN

Latest revision as of 01:16, 30 August 2016

Z3 Clarifications

Clarifications on Z3


Q 24. In how many different ways can the letters of the word 'CORPORATION' be arranged so that the vowels always come together?

How do we get a subset of a string value without using loop

Ans:
word = "CORPORATION";
vowels ="AEIOU";
vowelsarray=vowels.split("");
wordletterswithoutvowels=word.split("").filter((x)=>!x.isin(vowelsarray)); 
OR
IsNotAVowel:=!x.isin(vowelsarray);
word.split("").filter(IsNotAVowel);
OR
IsNotAVowel:=!x.isin("AEIOU".split(""));
word.split("").filter(IsNotAVowel);
Result => CRPRTN