issues Search Results · repo:donnemartin/interactive-coding-challenges language:Python
Filter by
69 results
(59 ms)69 results
indonnemartin/interactive-coding-challenges (press backspace or delete to remove)The code in test_stack_min.py uses sys.maxsize without importing the sys module. This will lead to a NameError. Add
import sys at the beginning of the file.
PrinceSajjadHussain
- Opened 23 days ago
- #316
I tried to check the challenges and/or solutions from the main page but wasn t able to open the links, e.g.
http://nbviewer.ipython.org/github/donnemartin/interactive-coding-challenges/blob/master/arrays_strings/rotation/rotation_solution.ipynb ...
needs-review
abguy
- Opened on Apr 28, 2024
- #310
self.assertEqual(bits.pairwise_swap(1), 1) is incorrect. According to the description, the result should be 2.
i.e. 0000000000000001 should result in 0000000000000010 which is 2 instead of 1.
needs-review
marvin659
- 1
- Opened on Jun 20, 2023
- #306
I just downloaded Coding.apkg file on this link and try to import in Anki but it gives me an error? Never used this Anki
program, am I try to import in a wrong way?
image
needs-review
sonergonul
- 2
- Opened on Sep 28, 2022
- #304
My initial attempt to solve this challenge is below:
from collections import Counter
class Solution(object):
def find_diff(self, str1, str2):
if str1 is None or str2 is None:
return ...
andar1an
- 3
- Opened on May 11, 2022
- #301
Itsjusjordon
- Opened on Dec 7, 2021
- #300
The get_next_smallest method in the solution for get_next_challenge is not implemented correctly. The problem is in the
last line before the return:
# Clear all bits to the right of index
num = ~((1 ...
needs-review
msm1089
- Opened on Jul 13, 2021
- #298

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.
Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip!
Press the /
key to activate the search input again and adjust your query.