Answer:
word = input('Enter a single word: ', 's');
n = length(word);
nodupWord = [];
for i = 1:n
dup = false;
c = word(i);
for j = 1:i-1
if word(j) == c
dup = true;
break;
end
end
if ~dup
nodupWord = [nodupWord, c]; %add the non-duplicate char to end
end
end
disp(['Adjusted word: ', nodupWord])
Explanation:
The code is in Python.
Answer: page background, page borders, color
Explanation: just did the assignment
Answer:
Dratini first evolves into dragonair at level 30, which then later on evolves into dragonite at level 55.
Answer:
I think the disadvantages of using feedly is that people might now like switching over to use that or might not understand it.