Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
292 views

More efficient solution to CodingBat blackjack?

Here's the codingbat java problem: Given 2 int values greater than 0, return whichever value is nearest to 21 without going over. Return 0 if they both go over. blackjack(19, 21) → 21 ...
2
votes
1answer
91 views

Python CodingBat sum67: why is this solution wrong?

I just started learning Python and I can't understand why this solution to the problem "sum67" at the CodingBat site (http://codingbat.com/prob/p108886) passes all normal tests but not the "other ...
2
votes
3answers
515 views

codingBat plusOut using regex

This is similar to my previous efforts (wordEnds and repeatEnd): as a mental exercise, I want to solve this toy problem using regex only. Description from codingbat.com: Given a string and a ...
2
votes
3answers
310 views

codingBat repeatEnd using regex

I'm trying to understand regex as much as I can, so I came up with this regex-based solution to codingbat.com repeatEnd: Given a string and an int N, return a string made of N repetitions of the ...
1
vote
7answers
1k views

Creating a New Reverse Java Array

CodingBat > Java > Array-1 > reverse3: Given an array of ints length 3, return a new array with the elements in reverse order, so {1, 2, 3} becomes {3, 2, 1}. public int[] ...
1
vote
4answers
912 views

catDog string problem at Codingbat.com

Could anyone check my solution? I want to return true if the string "cat" and "dog" appear the same number of times in the given string. There are various strings with different numbers of "cat" and ...
0
votes
4answers
435 views

Is this the most efficient code? (CodingBat Python, Boolean Logic)

I'm doing the CodingBat Python practice problems right now to hone my Python skills and I was wondering if my solution (which passes all the tests) is the most efficient? Prompt: You are driving a ...
0
votes
2answers
141 views

codingBat separateThousands using regex (and unit testing how-to)

This question is a combination of regex practice and unit testing practice. Regex part I authored this problem separateThousands for personal practice: Given a number as a string, introduce ...
0
votes
1answer
420 views

codingbat wordEnds using regex

I'm trying to solve wordEnds from codingbat.com using regex. Given a string and a non-empty word string, return a string made of each char just before and just after every appearance of the word ...