Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
0621 - Numar Lipsa
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==Rezolvare== <syntaxhighlight lang="python" line="1"> #0621 - Numar Lipsa def gaseste_numar(n, numere): # definim o functie care cauta cel mai mic numar natural nenul care # nu apare in lista data numere_date = set(numere) # convertim lista de numere intr-un set pentru a elimina dublurile for i in range(1, max(numere_date) + 2): # iteram prin numerele de la 1 pana la maximul din set # plus 2, trebuie sa cautam pana la urmatorul numar # natural nenul if i not in numere_date: # daca numarul nu se gaseste in set, atunci il returnam return i if __name__ == "__main__": n = int(input("Introduceți numărul de cifre din șir: ")) # citim numarul de cifre din sir si # lista de numere de la tastatura numere = list(map(int, input("Introduceți cifrele separate prin spațiu: ").split())) if n < 1 or n > 100 or max(numere) > 1000000000: # verificarea restrictiilor print("Datele de intrare nu corespund restricțiilor impuse.") else: print("Datele de intrare corespund restricțiilor impuse.") X = gaseste_numar(n, numere) # apelam functia si afisam rezultatul print(f"Cel mai mic număr natural nenul care nu apare în șirul dat este: {X}") </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width