You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<b>Merging lists</b> <a class=right href="https://hyperskill.org/learn/step/10068">Open on JetBrains Academy</a>
<br><br>
<html>
<head></head>
<body>
<p>Write a function that would take two lists and return one merged list, e.g. for the lists <code class="java">['Washington, D.C.', 'Chicago', 'New York']</code> and <code class="java">['Los Angeles', 'Las Vegas']</code> the result should be <code class="java">['Washington, D.C.', 'Chicago', 'New York', 'Los Angeles', 'Las Vegas']</code>.</p>
<p>You can use any of the methods described in the theory.</p>