def solution (s, t): #your code goes here. S s.replace(" " t= t.replace(" " 2 3 4 5 6 7 if len(s) != len(t): return False char_count_s () char_count_t = () for char in s: = else: 11 if char in char_count_s: char_count_s [char] += 1 char_count_s [char] = 1 for char in t: ").lower() ").lower () else: if char in char_count_t: char_count_t[char] += 1 char_count_t[char] = 1 return char_count_s == char_count t

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
My instructor saying my code has wrong indentation on several lines… please let me know which lines. I’ve asked this twice before and I haven’t got it yet
5
Next
Description
Rearranged strings
Here's a fun little puzzle for you: Given two strings, namely,
strings and string t, we'd like to know if it's possible to
rearrange the characters within one string to match the
character composition of the other string. In other words,
can you check if they are anagrams of each other?
If it's feasible to rearrange the characters so that both
strings contain the same set of characters, return true;
otherwise, return false. Remember, an anagram is a word
or phrase created by reshuffling the letters from another
word or phrase, using all the original letters exactly once.
Example 1:
Rearranged s
• Inputs: "listen"
Input t: "silent"
Expected Output: True
• Explanation: Both "listen" and "silent" are anagrams of
each other, as they can be rearranged to have the
same set of characters.
●
Example 2:
• Input s: "hello"
• Input t: "world"
• Expected Output: False
Explanation: "hello" and "world" are not anagrams of
each other as they have different sets of characters
●
10
11
16
17
8
12
13
14
15
18
9
19
20
21
22
23
24
25
26
27
28
29
30
/home/scaffold
Terminal
Transcribed Image Text:5 Next Description Rearranged strings Here's a fun little puzzle for you: Given two strings, namely, strings and string t, we'd like to know if it's possible to rearrange the characters within one string to match the character composition of the other string. In other words, can you check if they are anagrams of each other? If it's feasible to rearrange the characters so that both strings contain the same set of characters, return true; otherwise, return false. Remember, an anagram is a word or phrase created by reshuffling the letters from another word or phrase, using all the original letters exactly once. Example 1: Rearranged s • Inputs: "listen" Input t: "silent" Expected Output: True • Explanation: Both "listen" and "silent" are anagrams of each other, as they can be rearranged to have the same set of characters. ● Example 2: • Input s: "hello" • Input t: "world" • Expected Output: False Explanation: "hello" and "world" are not anagrams of each other as they have different sets of characters ● 10 11 16 17 8 12 13 14 15 18 9 19 20 21 22 23 24 25 26 27 28 29 30 /home/scaffold Terminal
4 def solution (s, t):
#your code goes
567
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
s= s.replace(" ",
"").lower ()
t= t.replace(" ", ").lower()
char_count_s ()
char_count_t = ()
if len(s) != len(t):
return False
for char in s:
here.
if char in char_count_s:
else:
11
char_count_s [char] += 1
for char in t:
char_count_s [char]
MacBook Pro
else:
if char in char_count_t:
-
char_count_t[char] += 1
char_count_t[char]
1
= 1
return char_count_s == char_count_t
Transcribed Image Text:4 def solution (s, t): #your code goes 567 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 s= s.replace(" ", "").lower () t= t.replace(" ", ").lower() char_count_s () char_count_t = () if len(s) != len(t): return False for char in s: here. if char in char_count_s: else: 11 char_count_s [char] += 1 for char in t: char_count_s [char] MacBook Pro else: if char in char_count_t: - char_count_t[char] += 1 char_count_t[char] 1 = 1 return char_count_s == char_count_t
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY