profile photo

Artsiom Vakulski

JUNIOR FRONT-END DEVELOPER

Contacts

About me

Hello! I am a system administrator. I enrolled in this course because I want to change my occupation to Frontend developer. I have experience working with HTML, CSS, JS, Python.

Skills

Code example

Delete occurrences of an element if it occurs more than n times. Given a list and a number, create a new list that contains each number of list at most N times, without reordering. For example if the input number is 2, and the input list is [1,2,3,1,2,1,2,3], you take [1,2,3,1,2], drop the next [1,2] since this would lead to 1 and 2 being in the result 3 times, and then take 3, which leads to [1,2,3,1,2,3]. With list [20,37,20,21] and number 1, the result would be [20,37,21].


              def delete_nth(order,max_e):
                m = order[::-1]
                for i in order:
                  while m.count(i) > max_e:
                  m.remove(i)
                return m[::-1]
              

Projects

project img

Online Zoo

project img

CV

Education

Language