Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

231a codeforces solution in python

n = int(input())
count = 0
for i in range(0, n):
    x = input()
    if x.count('1') >= 2:
        count += 1
print(count)
Comment

PREVIOUS NEXT
Code Example
Python :: exclude first value of an array python 
Python :: group by list python 
Python :: download unsplash images 
Python :: intersection python dict 
Python :: matplotlib axis labels 
Python :: read api from django 
Python :: initialize np array 
Python :: python anytree 
Python :: python min value index from an array 
Python :: xarray get number of lat lon 
Python :: python parse int as string 
Python :: read a function of excel in python 
Python :: a int and float. python 
Python :: palindrome checker python 
Python :: sort dict of dicts by key 
Python :: labelimg yolo save format 
Python :: scikit learn to identify highly correlated features 
Python :: how to write a dataframe to s3 object in python 
Python :: How to Add Elements To a Set using add() method in python 
Python :: python how to drop columns from dataframe 
Python :: pandas resample friday 
Python :: python find first occurrence in list 
Python :: convert number to char python 
Python :: import module python same directory 
Python :: get files in directory and subdirectory 
Python :: how to add a column with more rows to a dataframe 
Python :: django jazzmin pypi 
Python :: concat sort 
Python :: get first element of array python 
Python :: Flatten List in Python Using NumPy flat 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =