🌐
GitHub
github.com › Chris-Perkins › CodeForces-Solutions
GitHub - Chris-Perkins/CodeForces-Solutions: My CodeForces Solutions. Acts as my crash-course into Python programming. 500+ Solutions · GitHub
My CodeForces Solutions. Acts as my crash-course into Python programming. 500+ Solutions - Chris-Perkins/CodeForces-Solutions
Starred by 16 users
Forked by 6 users
Languages   Python 98.4% | Java 1.6%
🌐
Codeforces
codeforces.com › blog › entry › 60059
elegant Python solutions - Codeforces
R = lambda: map(int, input().split()) n, k = R(), v, t = [], [0]*n for p, c, i in sorted(zip(R(), R(), range(n))): t[i] = sum(v)+c v += [c] v = sorted(v)[::-1] if len(v) > k: v.pop() print(' '.join(map(str, t)))
Discussions

Anyone who uses Python for CF?
I use python and am currently an Expert on codeforces. I come across an unfair tle issue about once every months or so, when practicing. Didn’t really face any issues in a challenge till date. It’s honestly quite chill, if your algorithm’s right, it’ll pass 98% of the time. More on reddit.com
🌐 r/codeforces
20
17
July 24, 2024
No Looking At Solutions!
Opinions are going to differ even amongst top competitive programmers. See benq's advice and Errichto's . Everyone's different so you're going to have figure out what works for you. Also, if you're practicing for interviews and not for competitive programming, it might be inefficient to spend a lot of time being stuck. My personal preference is to solve all problems myself, and leave a problem for later if I can't. But I do like to read editorials after solving to see if there are better solutions. And don't miss Um_nik's answer to Q: But there are problems that require some standard things! Most people, especially beginners, don't have someone they can ask for help. They have to learn the standard patterns another way. Edit: Wording More on reddit.com
🌐 r/leetcode
4
1
April 30, 2023
How am I supposed to format code on codeforce
Test Cases generally expect you to provide output exactly as requested. For instance, if they want you to return something, but you log it to the console instead, it doesn't matter if the answer was correct, the test cases can't validate that because it expects the value to be returned. So, without seeing the exact question, and your exact code, it would be impossible to say what you're doing wrong. But generally speaking, you have to read the requirements carefully and ensure your code conforms to those requirements. More on reddit.com
🌐 r/learnprogramming
1
1
May 27, 2021
350+ problems solved on LC alone :)) first year of college.
Yep prob restrict yourself from easys for the next 100+ questions at least til you’re used to medium More on reddit.com
🌐 r/leetcode
37
182
3 days ago
🌐
Quora
quora.com › Where-can-I-find-a-Python-solution-to-all-the-problems-of-Codeforces
Where can I find a Python solution to all the problems of Codeforces? - Quora
Clone or fork a popular CF solutions repo and add your own Python translations. Write a script that queries Codeforces API for problem IDs and scrapes GitHub/GitLab for matching filenames and repository files (respect robots.txt and license rules). Use GitHub’s code search API to find occurrences of a specific problem ID or function name in Python files.
🌐
Codeforces
codeforces.com › blog › entry › 46459
For Python Coders - Codeforces
Argentum47 → Codeforces Round 1089 (Div. 2) aladdin.abdinli1 → HELLO NE BAKIYOSUN KARDESIM GIT CODE YAZ · yash_daga → Invitation to CodeChef Starters 134 (Rated till 6-Stars) — 15th May ... I started learning Python a week ago, and I've just solved my first problem using it.
🌐
Codeforces
codeforces.com › blog › entry › 48439
Samples of common python problems and their solution - Codeforces
=> None var_test() Traceback (most ... is out of scope when it comes to the var_test(). The only solution is to declare the variable within the function....
🌐
GitHub
github.com › seikhchilli › codeforces-solution
GitHub - seikhchilli/codeforces-solution: Codeforces Solutions written in C++ and Python. Give it a star if you find it helpful. · GitHub
Codeforces Solutions written in C++ and Python. Give it a star if you find it helpful. - seikhchilli/codeforces-solution
Starred by 59 users
Forked by 24 users
Languages   C++ 86.0% | Python 14.0%
Find elsewhere
🌐
GitHub
github.com › samridh90 › Codeforces
GitHub - samridh90/Codeforces: Codeforces problemset solution in python.
Python solutions for codeforces problems.
Starred by 6 users
Forked by 7 users
Languages   Python 100.0% | Python 100.0%
🌐
Codeforces
codeforces.com › blog › entry › 53133
Help needed in Python submissions - Codeforces
LucaLucaM → Codeforces Round 1051 (Div. 2) ali_omar_nafiz → AI, Cheating, and a First-Year’s Realization · kayumov_muhammad → I'm from the future: ask your questions about the world of tomorrow! Yedige2 → Do you know about eugalt, the king of shortest codes? ... Hi, I just began using Python 3.6.1 for Codeforces problems.
🌐
GitHub
github.com › SRD2705 › Codeforces-Python
GitHub - SRD2705/Codeforces-Python: Many solutions of Codeforces problems available
Solutions of Codeforces problems available here You can search questions using codeforces round and question numbers. Most solutions are in Python You can find the codeforces question statements in the .py file with input and output example Thank you
Author   SRD2705
🌐
GitHub
github.com › shukkkur › CodeForces-Python-Soltuions
GitHub - shukkkur/CodeForces-Python-Soltuions: Python solutions to Codeforces problems
This repository is dedicated to my Python solutions for CodeForces problems.
Starred by 19 users
Forked by 4 users
Languages   Python 100.0% | Python 100.0%
🌐
Codeforces
codeforces.com › blog › entry › 21851
Python performance tips - Codeforces
it's ok to use Python list as an array; it has O(1) element access time. It is NOT ok to use it as queue, even if the list is sorted. Use collections.deque instead if you need fast extraction of the max element. finally, realize that acceptable ...
🌐
GitHub
github.com › Sarthak30 › Codeforces
GitHub - Sarthak30/Codeforces: Solutions of problems on codeforces. Almost all of them are in Python except a few which are in C/C++.
Solutions of problems on codeforces. Almost all of them are in Python except a few which are in C/C++. Around 250 questions are solved Names may have simple mistakes but are clear to which problem they refer.
Starred by 12 users
Forked by 7 users
Languages   C++ 65.0% | Python 27.3% | Java 7.7% | C++ 65.0% | Python 27.3% | Java 7.7%
🌐
GitHub
github.com › ZainabNaveed13 › Codeforces-Python
GitHub - ZainabNaveed13/Codeforces-Python
🎯 Here, I have uploaded the Python implementations of the problems I have solved on Codeforces. This repository is a collection of my accepted solutions, categorized by problem codes and organized for easy reference and learning. Programming Language: All solutions are implemented in Python.
Author   ZainabNaveed13
🌐
GitHub
github.com › SulemanSadat › Codeforces-Solutions
GitHub - SulemanSadat/Codeforces-Solutions: Python solutions to Codeforces problems designed for ICPC preparation, featuring diverse challenges, detailed explanations, and test cases.
Python solutions to Codeforces ... and test cases. A repository of Python solutions to problems from Codeforces, tailored for ICPC (International Collegiate Programming Contest) preparation....
Author   SulemanSadat
🌐
Codeforces
codeforces.com › blog › entry › 61298
Issue with Python ! - Codeforces
I use Python3 as my primary language ... I faced severe problems because of using Python3 !!! Faced the following problem in the Problem B of Contest #1027(Educational Codeforces Round 49 ) I coded a perfectly correct Solution in Python3 but got a TLE in 3rd test case ...