prime factors code kata (2010)

Post on 20-May-2015

583 Views

Category:

Technology

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

This are only slides, the actual demo is not included.

TRANSCRIPT

Prime Factors Code KataJava Student User Group

April 2010

Peter Kofler, ‘Code Cop’@codecopkofler

www.code-cop.org

Copyright Peter Kofler, licensed under CC-BY.

Peter Kofler

• Ph.D. (Appl. Math.)

• Professional SoftwareDeveloper for 11 years

• Lead Developer at System One

• fanatic about code quality

PETER KOFLER, CODE-COP.ORG FANATIC ABOUT CODE QUALITY

The Prime FactorsKata

Robert C. Martin(“Uncle Bob”)

Software Craftsmanship

CraftsmanshipOver Crap

The Requirements.

• Write a class named “PrimeFactors” that has one static method: generate.– The generate method takes an integer

argument and returns a List<Integer>.– That list contains the prime factors in

numerical sequence.

http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata

PETER KOFLER, CODE-COP.ORG FANATIC ABOUT CODE QUALITY

Demo

Keep the bar green to keep the code clean

Thank You

Peter Kofler

@codecopkofler

www.code-cop.org

PETER KOFLER, CODE-COP.ORG FANATIC ABOUT CODE QUALITY

Links

• General– http://en.wikipedia.org/wiki/Robert_Cecil_Martin– http://en.wikipedia.org/wiki/Software_craftsmanship

• Kata– http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata– http://en.wikipedia.org/wiki/Kata_(programming)

• Images– karate: http://www.flickr.com/photos/the-consortium/5301698212/– red-green: http://www.flickr.com/photos/30830597@N08/3630649274/– questions: http://www.flickr.com/photos/seandreilinger/2326448445/

PETER KOFLER, CODE-COP.ORG FANATIC ABOUT CODE QUALITY

top related