Stories
Slash Boxes
Comments

SoylentNews is people

posted by LaminatorX on Wednesday October 15 2014, @03:06PM   Printer-friendly
from the considered-harmful dept.

The New York Times has coverage on the phenomenon of Developer Bootcamps, that claim to do in a matter of a couple of months what used to take at least a couple of years for an associate's degree. These cram courses are apparently getting about a 75% job placement rate.

Have any Soylentils either gone through these programs, or worked with others who have? If so, what are your experiences?

 
This discussion has been archived. No new comments can be posted.
Display Options Threshold/Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 1) by ld a, b on Thursday October 16 2014, @11:34AM

    by ld a, b (2414) on Thursday October 16 2014, @11:34AM (#106577)

    Sorry to disappoint you if you were hoping for something else, but the answer is radix sort which was developed to sort US census data back when tabulating machines were the bleeding edge.

    --
    10 little-endian boys went out to dine, a big-endian carp ate one, and then there were -246.
  • (Score: 2) by No.Limit on Thursday October 16 2014, @07:13PM

    by No.Limit (1965) on Thursday October 16 2014, @07:13PM (#106768)

    Radix's sort O(n) runtime is quite controversial as it's actually O(n*log(k)) where you can have at most k different elements that must all have a binary representation.

    More on this here [stackoverflow.com]

    For comparison only sorting algorithms (much smaller constraint) O(n*log(n)) is proven to be the best worst case running time.