Skip to main content

Questions tagged [python]

This challenge is related to the Python language. Note that challenges that require the answers to be in a specific language are generally discouraged.

Filter by
Sorted by
Tagged with
0 votes
1 answer
80 views

You have to code in python, and the number generated by your code must be bigger than all other current submissions. You need to make your code as small as possible, it has to terminate but you can ...
IAmNotLarry's user avatar
0 votes
1 answer
326 views

I have the following Python code, which is 214 bytes long: ...
RannStudio's user avatar
1 vote
0 answers
90 views

Write a piece of code that is compatible with both C and Python compilers/interpreters, which can output its own source code. Quine is quite easy, but how about this double language version? Hint: To ...
NoNormalCreeper's user avatar
6 votes
4 answers
637 views

Code Golf Challenge Given a string of 10 characters: 'abcdefghij' I want to format it in this pattern and print it in the console in a minimum number of characters: ...
Karine Bauch's user avatar
8 votes
1 answer
562 views

Goal: create a self-referencing tuple satisfying x == (x,) in any version of Python. Standard libraries, matplotlib, numpy, pandas only. Answers meeting this extra ...
Shuri2060's user avatar
  • 191
-3 votes
1 answer
588 views

So I got kinda bored and was wondering if it was possible to make this code shorter without modifying anything except a file named coin.py... ...
Eric's user avatar
  • 121
6 votes
2 answers
450 views

I have the code: ...
Dark Programmer's user avatar
9 votes
2 answers
691 views

I want to read two strings on separate lines, each string the same length and containing only 0's and 1's, and determine if the first is the one's complement of the second. How succinctly can this be ...
Fixee's user avatar
  • 191
14 votes
16 answers
3k views

In this king-of-the-hill challenge, you will program a bot, consisting of a python function of the form def BOTNAME(info, me, round): pass # ... main body ...
Qaziquza's user avatar
  • 1,693
8 votes
2 answers
354 views

I have a coding problem that goes like this: Given a positive integer \$N\$, return a list of all possible pairs of positive integers \$(x,y)\$ such that $$\frac1x+\frac1y=\frac1N$$ I already solved ...
Aiden Chow's user avatar
  • 14.5k
9 votes
2 answers
982 views

I am trying to write a solution to the following problem using as few characters as possible (to meme my friend and introduce him to golfing). Can any improvements be done to my code? So the problem ...
chnmasta05's user avatar
9 votes
4 answers
3k views

I'm writing a program that takes a number from input (call it x), loops from 0 to (x - 1) (let's call our iterator y) and prints \$y^x+x\$ for each y. After the loop, it then prints "SUM: N" ...
Fmbalbuena's user avatar
  • 5,085
6 votes
2 answers
474 views

I am trying to push my limits of making a python code as short as possible. I left the readability part way behind. I was attempting the K-Goodness String problem from Round A of Google Kick Start ...
Ishaan Kapoor's user avatar
4 votes
2 answers
1k views

The goal is to create a generator generator [...] generator generator comprehension. The generator must be created via generator comprehension. The following expression must be valid for any number ...
DivideByZero's user avatar
9 votes
2 answers
4k views

I have 2 inputs: 1 single number and some numbers separated by whitespace: 1 1 2 3 4 5 I want to loop over the second input, and I don't need the first input. I ...
Basto's user avatar
  • 573
8 votes
6 answers
798 views

Background So, nowadays the popular Prisoner's Dilemma variant is the Prisoner's Trilemma, where there are three options. I can easily see that being increased, so I figured Why settle for three ...
4D4850's user avatar
  • 189
6 votes
6 answers
1k views

In this king-of-the-hill challenge, you will be making a python 3 bot to play the card game judgement! Sandbox Rules Judgement is a hand based game similar to games like rummy. In each round, 7 cards ...
Rushabh Mehta's user avatar
8 votes
1 answer
437 views

What does "jelly" mean in the title?. Cop's thread Robbers, you are to choose an uncracked Cop answer, and attempt to find a Jelly program which is: shorter than the Cop's answer solves the ...
caird coinheringaahing's user avatar
16 votes
17 answers
1k views

Github You have probably played, and may even have written a program to play, a simple number guessing game. If so, this probably looks familiar: ...
Miriam's user avatar
  • 843
-7 votes
1 answer
214 views

Create a function which takes in a input integer and then returns the number of factors it has, like if you pass 25 then it will return ...
Smilecat's user avatar
  • 165
3 votes
2 answers
662 views

How do I remove all duplicates from list and order it based on count? ...
12944qwerty's user avatar
1 vote
2 answers
849 views

Input: from STDIN number of vertices in Graph \$2 \leq N \leq 100\$. Rules: [Code size] = max ([code length without spaces, tabs and newlines], [total code length divided by 4]) Math formulation: In ...
Evgeny's user avatar
  • 333
16 votes
8 answers
1k views

A great Python golfing tip is to omit needless spaces. But if you are like me, you don't always have the time to search for which spaces to remove. If only there was a way to speed up the process... ...
dingledooper's user avatar
  • 23.4k
4 votes
2 answers
3k views

I am trying to find the shortest code in python 3, to solve this problem: You are driving a little too fast, and a police officer stops you. Write code to take two integer inputs, first one ...
Sayandip Dutta's user avatar
11 votes
3 answers
854 views

In a challenge of CodingGame, there is a challenge that ask you to decode a string composed by reversed words ('Hello world' > 'olleH dlrow') then each characters converted into ascii value separeted ...
Dorian Turba's user avatar