
Fayzullaxon Sharipxanov
Front-end developer
Contacts
Phone: +998 90 000-00-00
Location: Tashkent,
Email: deltaframe97@gmail.com
About Me
I am 19 years old and currently studying at university. I am eager to learn new skills and grow both personally and professionally.I am particularly interested in front-end development because it allows me to see the immediate results of my work and create interactive experiences.
Experience
Skills
- HTML
- CSS
- Python
- C
Code example
numbers = [3, -1, -2, 1, 0, 4, -4, 5, 8, 10]
n = len(numbers)
counter=0
for i in range(1, 1 << n):
subset = []
subset_sum = 0
for j in range(n):
if i & (1 << j):
subset.append(numbers[j])
subset_sum += numbers[j]
if subset_sum == 0:
print(subset)
counter +=1
print(counter)