The question is from Elementary Introduction to the Wolfram Language, section 28 Tests and Conditionals: Find Roman numerals up to 100 that do not contain “I”.
What am I doing wrong that the following code is not returning the desired output?
Select[RomanNumeral[Range[100]], MemberQ[#, "I"]&]
I can't quite figure out where I am going wrong.
Thanks!