Last active
May 7, 2016 05:11
-
-
Save caged/bc7a6552990bb16ffeab961ccaa8cddf to your computer and use it in GitHub Desktop.
Using Ruby, sort each coach by consecutive season tenures. Some seasons have two coaches which implies that the coach was fired/removed mid-season. The result should be something like [[name, start_season, end_season], [name, start_season, end_season]] where the order is by ascending start_season.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
season | coach | |
---|---|---|
1994-95 | Bill Blair | |
1995-96 | Bill Blair | |
1990-91 | Bill Musselman | |
1989-90 | Bill Musselman | |
2006-07 | Dwane Casey | |
2005-06 | Dwane Casey | |
1999-00 | Flip Saunders | |
2014-15 | Flip Saunders | |
2004-05 | Flip Saunders | |
2003-04 | Flip Saunders | |
2002-03 | Flip Saunders | |
2001-02 | Flip Saunders | |
1995-96 | Flip Saunders | |
1996-97 | Flip Saunders | |
1997-98 | Flip Saunders | |
1998-99 | Flip Saunders | |
2000-01 | Flip Saunders | |
1992-93 | Jimmy Rodgers | |
1991-92 | Jimmy Rodgers | |
2008-09 | Kevin McHale | |
2004-05 | Kevin McHale | |
2009-10 | Kurt Rambis | |
2010-11 | Kurt Rambis | |
2008-09 | Randy Wittman | |
2006-07 | Randy Wittman | |
2007-08 | Randy Wittman | |
2013-14 | Rick Adelman | |
2012-13 | Rick Adelman | |
2011-12 | Rick Adelman | |
2015-16 | Sam Mitchell | |
1992-93 | Sidney Lowe | |
1993-94 | Sidney Lowe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
there's a Y2K problem with Flip Sanders :)