Tagged Questions
The code-kata tag has no wiki summary.
54
votes
12answers
7k views
Your favorite code kata [closed]
What are your favorite code kata?
What do you do to practice software development?
Where do you go to find new small projects to practice?
We already know Jeff Atwood's answers.
37
votes
2answers
1k views
Coding Katas for practicing the refactoring of legacy code
I've gotten quite interested in coding katas in recent months. I believe they are a great way to hone my programming skills and improve the quality of the code I write on the job.
There are numerous ...
28
votes
8answers
1k views
f(int x) { return x == 0 ? 0 : 1; } in Java without conditionals
I want to implement f(int x) { return x == 0 ? 0 : 1; } in Java.
In C, I'd just "return !!x;", but ! doesn't work like that in Java. Is there some way to do it without conditionals? Without something ...
19
votes
8answers
2k views
Are there any kata for practice VIM? [closed]
I've used VIM for many years as my primary text editor. And I am still learning how to use VIM for various editing tasks.
The problem is that even if I learn something and use it once a week I forgot ...
13
votes
10answers
6k views
C++ Practice Problems
I am learning C++ currently and am probably at the intermediate level. I am running out of ideas for what to do with my current programming skill. And, as the title puts it I need some practice ...
11
votes
4answers
1k views
Any practical coding dojo/kata ideas?
I've been asked to run a workshop and coding dojo soon for people to try out Scala and try to build something with it. The attendees are all going to be new to Scala, and could come from any of a ...
8
votes
4answers
489 views
What is a code-kata and what is it good for?
in the past few weeks I have heard about a phenomenon called 'code-kata'. When I get it right, it means coding an exercise again and again. What is its point? Does it improve your abillity to design ...
7
votes
3answers
2k views
Assignments, i.e. Code Kata, for Coding Dojos
I would like to gather a list of assignments, i.e. Code Kata, for Coding Dojos. Please provide a name and a short description of the assignment or a link.
I'll kick off things with FizzBuzz.
Update
...
7
votes
5answers
1k views
LINQ practice exercises or puzzles? [closed]
I'm still trying to learn LINQ, though it's going more smoothly now that I've started to use it daily at work. I still don't feel good at it, though. Does anyone have any challenging practice ...
5
votes
3answers
358 views
Are there any resources similar to katacasts.com?
I recently discovered Corey Haines great site katacasts.com, and I find it to be an excellent learning resource as well as a source of inspiration.
Are there any other sites where I can find videos ...
4
votes
2answers
240 views
Can this Haskell kata solution be made more idiomatic?
I'm relearning Haskell after a 10 year hiatus, partly to see what's changed and partly as an antidote to days spent in C#, SQL and JavaScript and partly as it's cool all of a sudden ;-)
I decided to ...
4
votes
4answers
198 views
What is a good way to conduct a Group Kata?
I'd like to conduct a group Kata session, to get my software developer group to pick up the practice.
I'm thinking of giving some of the sample problems out there, and splitting the group into two
...
2
votes
3answers
425 views
Scaling exercises to practice
I was trying to find online some exercises to practice scaling techniques (memchached, SQL Optimization, sharding dbs), but I could only find descriptions of these techniques, not any project on which ...
1
vote
0answers
57 views
Programming Workshops for Starting Programmers : : Best way to Structure [closed]
We are planning to organize programming workshops for Java Web Developers with basic coding experience and no design experience. Aim of the workshops is to introduce the programmers to clean code.
...
1
vote
1answer
85 views
Minesweeper Kata, how to manage and change tests to reflect design in TDD?
I'm doing Minesweeper Kata http://codingdojo.org/cgi-bin/wiki.pl?KataMinesweeper
I decided to start with grid creation and have some questions about organization of growing tests base.
First thing I ...
1
vote
1answer
242 views
Looking for C# generics/delegate katas
Any recommendations for katas covering generics and delegates in C#?
Most of the member on my team can code generics and delegates, but always require a quick look at the documentation or an example ...
1
vote
3answers
208 views
What's a canonical example of code kata to learn about pointers?
I've never worked with a language that didn't provide for some form of memory management, and thus managed to get by without ever really groking pointers.
I can dabble in C I guess, as a result of ...
1
vote
2answers
157 views
MD5 code kata and BDD
I was thinking to implement MD5 as a code kata and wanted to use BDD to drive the design (I am a BDD newb).
However, the only test I can think of starting with is to pass in an empty string, and the ...
0
votes
1answer
82 views
Are there good code katas for small groups of developers?
Are there any code katas out there that can be worked on as a group?
I'm hoping to do something a bit more interesting than the "book club" at the office.
0
votes
4answers
81 views
SQL Favorite Color Quiz
Assuming the following table:
USER COLOR ORDER
==================
JOE RED 1
JOE BLUE 2
PHIL BLUE 3
Joe first chose red, then chose blue as his favorite color... How do you write a ...
0
votes
4answers
117 views
How to emit a comma-separated list?
This is profoundly simple, yet I've seen many variants, and I don't see my own practice much elsewhere.
Iterable<String> strings;
Create a String containing all the strings, separated by ...
0
votes
2answers
65 views
Why is the extraction operator not working?
I trying out some problems in Google's Code Jam. For the question Store Credit, I have the following code in C++:
if (input.is_open()) {
getline(input, line);
ss << line;
ss ...
0
votes
2answers
213 views
Regex help. I need ideas for solve the String Calculator kata with Groovy
I'm working on String Calculator code kata with Groovy.
There are a lot of scenarios that solve for achieve the solution:
I have:
//;\n1;2;3
//#\n1#2#3
//+\n1+2+3
//*\n1*2*3
//?\n1?2?3
I want:
...
0
votes
1answer
497 views
Good source for code katas [closed]
Possible Duplicate:
What are some interesting coding exercises?
I am searching for a good site for code katas. Preferably something where it is possible to upload solutions and rate them - ...