Answer:
Following is the program in Python language
def uniquely_sorted(lst1): #define the function uniquely_sorted
uni_que = [] #creating an array
for number in lst1: #itereating the loop
if number not in uni_que: #check the condition
uni_que.append(number)#calling the function
uni_que.sort() #calling the predefined function sort
return uni_que #returns the unique values in sorted order.
print(uniquely_sorted()([8, 6, 90, 76])) #calling the function uniquely_sorted()
Output:
[6,8,76,90]
Explanation:
Following are the description of the Python program
- Create a functionuniquely_sorted() that takes "lst1" as a list parameter.
- Declared a uni_que[] array .
- Iterating the loop and transfer the value of "lst1" into "number"
- Inside the loop call, the append function .the append function is used for adding the element in the last position of the list.
- Call the predefined function sort(for sorting).
- Finally, call the function uniquely_sorted() inside the print function.
Its easy that moderators that see this answer can think that my answer isn't without explanation.
• Type of atom C (Carbon)
C = 1
• Type of atom H (Hydrogen)
H = 4
<em>You</em><em> </em><em>dont</em><em> </em><em>underst</em><em>and</em><em>?</em><em> </em><em>JUST</em><em> </em><em>SEE</em><em> </em><em>THE</em><em> </em><em>FORMULA</em><em> </em><em>C</em><em> </em><em>MEANS </em><em>ONLY </em><em>HAVE </em><em>1</em><em> </em><em>CARBON </em><em>ATOM </em><em>A</em><em>ND</em><em> </em><em>H4</em><em> </em><em>MEANS</em><em> </em><em>4</em><em> </em><em>ATOM</em><em> </em><em>OF</em><em> </em><em>HYDRO</em><em>GEN</em>
<em>oK</em><em>.</em><em> </em><em>have</em><em> </em><em>a</em><em> </em><em>nice</em><em> </em><em>day</em><em> </em><em>hope</em><em> </em><em>you</em><em> </em><em>understands</em>
Fam Try C.<span>S waves do not travel through molten rocks but P waves travel through molten rocks.</span>
Answer:
i need free points im sry
Explanation: